Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Music Non Stop",
"description": "A generative music engine that plays new music indefinitely with a single click. Optional web preset controls available.",
"version": "1.0.0",
"manifest_version": 3,
"background": {
"service_worker": "background.js",
"type": "module"
},
"permissions": [
"offscreen",
"storage",
"tabs"
],
"action": {
"default_title": "Play Music Engine",
"default_icon": {
"16": "assets\/play-icon_16px.png",
"32": "assets\/play-icon_32px.png",
"48": "assets\/play-icon_48px.png",
"128": "assets\/play-icon_128px.png"
}
},
"icons": {
"16": "assets\/play-icon_16px.png",
"32": "assets\/play-icon_32px.png",
"48": "assets\/play-icon_48px.png",
"128": "assets\/play-icon_128px.png"
},
"externally_connectable": {
"matches": [
"https:\/\/extension.musicnonstop.io\/*",
"https:\/\/musicnonstop.io\/*"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/extension.musicnonstop.io\/*"
],
"js": [
"content-script.js"
]
}
],
"host_permissions": [],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},
"homepage_url": "https:\/\/extension.musicnonstop.io\/privacy-policy"
}