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",
"manifest_version": 3,
"name": "Suno Non-Stop",
"version": "1.3",
"description": "Play music non-stop on Suno's explore page with advanced controls. It's your personal AI DJ.",
"permissions": [
"sidePanel",
"activeTab",
"tabs"
],
"host_permissions": [
"https:\/\/suno.com\/*"
],
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"side_panel": {
"default_path": "sidepanel.html"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Open Suno Non-Stop",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/suno.com\/*"
],
"js": [
"content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"icons\/icon128.png"
],
"matches": [
"https:\/\/suno.com\/*"
]
}
]
}