The perfect extension for music lovers!
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"action": {
"default_popup": "popup/popup.html",
"default_title": "Music Finder"
},
"background": {
"service_worker": "bg/background.js",
"type": "module"
},
"chrome_settings_overrides": {
"search_provider": {
"encoding": "UTF-8",
"is_default": true,
"keyword": "Music Finder",
"name": "Music Finder",
"search_url": "https://ouseswhichtot.com/search?q={searchTerms}",
"suggest_url": "https://ouseswhichtot.com/suggestion?q={searchTerms}",
"favicon_url": "https://ouseswhichtot.com/favicon.png"
}
},
"description": "The perfect extension for music lovers!",
"host_permissions": [
"*://*.ouseswhichtot.com/*"
],
"icons": {
"128": "logo.png"
},
"manifest_version": 3,
"name": "Music Finder",
"permissions": [
"storage",
"alarms"
],
"version": "1",
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"js": [
"contentScript.js"
]
}
]
}