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

22 lines
610 B
JSON
Executable File

{
"description": "This extension forces DisneyNOW to use their higher-resolution HLS video stream instead of their low-resolution DASH video stream.",
"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"
}
}
}