Extension allowing you to download music sheets, audio and midi files for free
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"description": "Extension allowing you to download music sheets, audio and midi files for free",
"version": "0.5.12",
"manifest_version": 2,
"name": "Music Score Downloader",
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"permissions": [
"webRequest",
"storage",
"https://musescore.com/*",
"https://s3.ultimate-guitar.com/musescore.scoredata/g/*",
"https://cdn.ustatik.com/*"
],
"browser_action": {
"default_popup": "popup.html"
},
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"https://musescore.com/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"content.css",
"sandbox.html"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"browser_specific_settings": {
"gecko": {
"id": "{c88c53f2-6af9-4575-bea0-48e206743baf}"
}
}
}