{
"manifest_version": 2,
"name": "Kitten Radio Extension",
"description": "Listen while browsing the internet freely and without a background popup open to Kitten Radio",
"version": "1.0",
"permissions": [
"http://somewhat.server.com:8041/"
],
"background": {
"page": "background.html"
},
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
}
}
popup.html:
<!DOCTYPE html>
<html>
<head>
<title>Kitten Radio</title>
<meta charset="utf-8">
</head>
<body>
<audio id="player" src="http://somewhat.server.com:8041/;mp3" controls>This player do not work on this browser</audio>
</body>
</html>
Hello again stackoverflow!
I'm trying to develop a chrome extension to play music in the background whilst the user can navigate the web.
The popup is showing fine and the audioplayer is there, but the audio won't load. Using "Inspect Element" I found that the stream is stuck on "Pending".
How can I solve this?
I've tried *://*/
in the "permissions" aswell.