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

22 lines
640 B
JSON
Raw Normal View History

2022-03-19 03:58:19 +00:00
{
2022-03-19 04:03:40 +00:00
"description": "This browser extension forces DisneyNOW to use their higher-resolution video stream by imitating the Android app. (It also blocks DisneyNOW ads.)",
2022-03-19 03:58:19 +00:00
"manifest_version": 2,
"name": "Force High-Resolution DisneyNOW",
"version": "1.0",
"content_scripts": [
{
"matches": ["*://disneynow.com/*"],
"js": ["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": [
"page.js"
],
"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
}
}
}