ultrawidify/manifest.json

97 lines
2.1 KiB
JSON
Raw Normal View History

2016-10-16 13:13:34 +02:00
{
"manifest_version": 2,
"name": "Ultrawidify",
2018-05-12 01:51:43 +02:00
"version": "3.0.0a",
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/dep/chrome/chrome-extension-async.js",
2018-01-20 22:59:31 +01:00
"js/run/GlobalVars.js",
"js/lib/BrowserDetect.js",
"js/lib/StorageManager.js",
"js/lib/Comms.js",
"js/conf/Debug.js",
"js/conf/ExtensionConf.js",
"js/conf/Settings.js",
"js/conf/SitesConf.js",
"js/conf/Status.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/dep/jquery-3.1.1.js",
"js/dep/chrome/chrome-extension-async.js",
"js/lib/BrowserDetect.js",
"js/lib/StorageManager.js",
"js/lib/Comms.js",
"js/conf/Debug.js",
"js/conf/ExtensionConf.js",
"js/conf/Settings.js",
"js/conf/SitesConf.js",
"js/conf/Status.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
}