ultrawidify/manifest.json

96 lines
1.9 KiB
JSON
Raw Normal View History

2016-10-16 13:13:34 +02:00
{
"manifest_version": 2,
"name": "Ultrawidify",
2018-09-22 22:50:32 +02:00
"version": "3.2.0-a3",
2018-08-07 23:31:28 +02:00
"applications": {
"gecko": {
"id": "{cf02b1a7-a01a-4e37-a609-516a283f1ed3}"
}
},
2016-10-16 13:13:34 +02:00
"icons": {
"32":"res/icons/uw-32.png",
"64":"res/icons/uw-64.png"
},
2018-02-06 19:51:31 +01:00
"description": "Aspect ratio fixer for youtube that works around some people's disability to properly encode 21:9 (and sometimes, 16:9) videos.",
"content_scripts": [{
"matches": ["*://*/*"],
"js": [
"js/conf/Debug.js",
"js/lib/BrowserDetect.js",
2018-08-07 23:31:28 +02:00
"js/conf/ExtensionConf.js",
"js/lib/ObjectCopy.js",
"js/lib/Settings.js",
2018-08-07 23:31:28 +02:00
"js/lib/Comms.js",
2018-05-12 02:51:58 +02:00
"js/lib/EdgeDetect.js",
"js/lib/GuardLine.js",
"js/modules/PageInfo.js",
"js/modules/DebugCanvas.js",
2018-05-12 02:51:58 +02:00
"js/modules/ArDetect.js",
"js/modules/Zoom.js",
"js/modules/Scaler.js",
"js/modules/Stretcher.js",
"js/modules/Resizer.js",
"js/lib/PlayerData.js",
2018-05-12 02:51:58 +02:00
"js/lib/VideoData.js",
"js/conf/Keybinds.js",
"js/uw.js" ],
2016-10-16 13:13:34 +02:00
"all_frames": true
}],
2016-10-16 13:13:34 +02:00
"background": {
"scripts": [
"js/conf/Debug.js",
"js/lib/BrowserDetect.js",
2018-06-28 23:43:52 +02:00
2018-08-07 23:31:28 +02:00
"js/conf/ExtensionConf.js",
2018-06-28 23:43:52 +02:00
"js/lib/Comms.js",
"js/lib/ObjectCopy.js",
"js/lib/Settings.js",
"js/conf/Keybinds.js",
"js/uw-bg.js"
]
},
2016-10-16 13:13:34 +02:00
"permissions": [
"tabs", "storage", "activeTab", "<all_urls>", "webNavigation"
2016-10-16 13:13:34 +02:00
],
"browser_action": {
"default_icon": "res/icons/uw-32.png",
"default_popup": "res/popup/popup.html",
2018-01-11 22:43:25 +01:00
"default_title": "Ultrawidify"
},
2016-10-16 13:13:34 +02:00
"web_accessible_resources": [
"js/*",
"res/fonts/*",
"res/css/*",
"res/img/ytplayer-icons/zoom.png",
"res/img/ytplayer-icons/unzoom.png",
"res/img/ytplayer-icons/fitw.png",
"res/img/ytplayer-icons/fith.png",
"res/img/ytplayer-icons/reset.png",
"res/img/ytplayer-icons/settings.png",
"res/img/settings/about-bg.png"
2018-02-04 20:22:12 +01:00
]
2016-10-16 13:13:34 +02:00
}