22 lines
625 B
JSON
22 lines
625 B
JSON
{
|
|
"description": "This browser extension forces DisneyNOW to use their higher-resolution video stream by imitating the Android app. (It also blocks DisneyNOW ads.)",
|
|
"manifest_version": 2,
|
|
"name": "Force High-Resolution DisneyNOW",
|
|
"version": "1.0",
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["*://disneynow.com/*"],
|
|
"js": ["content.js"],
|
|
"run_at": "document_end"
|
|
}
|
|
],
|
|
"web_accessible_resources": [
|
|
"page.js"
|
|
],
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "high-res-disneynow@thebrokenrail.com"
|
|
}
|
|
}
|
|
}
|