Crunchyroll-Downloader-v3.0/CRD-addon/manifest.json
hama3254 c4ea1510ac removed browser bypass, small fixes
removed browser bypass for funimation
small fixes
2021-06-20 19:02:55 +02:00

42 lines
839 B
JSON

{
"manifest_version": 2,
"name": "Crunchyroll Downloader Addon",
"version": "0.6.0",
"description": "A Firefox Addon for my Crunchyroll Downloader",
"icons": {
"48": "icons/icon-48.png"
},
"permissions": [
"storage",
"activeTab",
"webRequest",
"webRequestBlocking",
"http://127.0.0.1/*",
"tabs"
],
"content_scripts": [
{
"all_frames": true,
"matches": ["http://beta.crunchyroll.com/*", "https://beta.crunchyroll.com/*"],
"match_about_blank": true,
"js": ["inject_beta.js"]
}
],
"browser_action": {
"default_icon": {
"128": "icons/icon-128.png",
"48": "icons/icon-48.png",
"20": "icons/icon-20.png"
},
"default_title": "CR-Downloader",
"default_popup": "popup.html"
},
"background": {
"scripts": ["background.js"]
}
}