force-high-resolution-disne.../manifest.json

24 lines
785 B
JSON
Raw Normal View History

2022-03-19 03:58:19 +00:00
{
"manifest_version": 2,
"name": "Force High-Resolution DisneyNOW",
2022-03-20 04:39:47 +00:00
"author": "TheBrokenRail",
2022-05-14 23:57:37 +00:00
"version": "1.3",
2022-03-26 18:45:18 +00:00
"description": "This browser extension forces DisneyNOW to use their higher-resolution video stream by imitating the Android app. (It also blocks some DisneyNOW ads.)",
2022-03-20 04:39:47 +00:00
"homepage_url": "https://gitea.thebrokenrail.com/TheBrokenRail/force-high-resolution-disneynow",
2022-03-19 03:58:19 +00:00
"content_scripts": [
{
"matches": ["*://disneynow.com/*"],
2022-03-20 00:36:18 +00:00
"js": ["src/content.js"],
2022-03-19 10:00:48 +00:00
"run_at": "document_start"
2022-03-19 03:58:19 +00:00
}
],
"web_accessible_resources": [
2022-03-20 00:36:18 +00:00
"src/page.js"
2022-03-19 03:58:19 +00:00
],
"browser_specific_settings": {
"gecko": {
2022-03-19 04:15:47 +00:00
"id": "force-high-resolution-disneynow@thebrokenrail.com"
2022-03-19 03:58:19 +00:00
}
}
}