2016-10-16 13:13:34 +02:00
{
"manifest_version" : 2 ,
2018-01-12 00:26:29 +01:00
"name" : "Ultrawidify" ,
2018-02-05 22:46:38 +01:00
"version" : "2.1.1" ,
2016-10-16 13:13:34 +02:00
2016-10-22 21:25:19 +02:00
"icons" : {
2016-12-04 12:01:38 +01:00
"32" : "res/icons/uw-32.png" ,
"64" : "res/icons/uw-64.png"
2016-10-22 21:25:19 +02:00
} ,
2018-02-05 22:46:38 +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. Now with more autodetection." ,
2018-01-18 00:11:03 +01:00
2017-09-24 01:54:46 +02:00
"content_scripts" : [ {
2017-05-23 21:00:38 +02:00
"matches" : [ "*://*/*" ] ,
2017-09-24 01:54:46 +02:00
"js" : [
2018-01-18 00:11:03 +01:00
"js/dep/jquery-3.1.1.js" ,
2018-02-06 00:48:13 +01:00
"js/dep/chrome/chrome-extension-async.js" ,
2018-01-18 00:11:03 +01:00
2018-01-20 22:59:31 +01:00
"js/run/GlobalVars.js" ,
2018-01-18 00:11:03 +01:00
"js/lib/BrowserDetect.js" ,
"js/lib/StorageManager.js" ,
"js/lib/Comms.js" ,
"js/conf/Debug.js" ,
"js/conf/Settings.js" ,
"js/conf/SitesConf.js" ,
"js/conf/Status.js" ,
"js/conf/ExtensionConf.js" ,
"js/lib/PlayerDetect.js" ,
"js/modules/PageInfo.js" ,
"js/modules/ArDetect.js" ,
"js/modules/Resizer.js" ,
"js/conf/Keybinds.js" ,
"js/uw.js" ] ,
2016-10-16 13:13:34 +02:00
"all_frames" : true
2017-09-24 01:54:46 +02:00
} ] ,
2016-10-16 13:13:34 +02:00
2018-01-24 23:15:54 +01:00
"background" : {
"scripts" : [
"js/dep/jquery-3.1.1.js" ,
2018-02-06 00:48:13 +01:00
"js/dep/chrome/chrome-extension-async.js" ,
2018-01-24 23:15:54 +01:00
"js/lib/BrowserDetect.js" ,
"js/lib/StorageManager.js" ,
"js/lib/Comms.js" ,
"js/conf/Debug.js" ,
"js/conf/Settings.js" ,
"js/conf/SitesConf.js" ,
"js/conf/Status.js" ,
"js/conf/ExtensionConf.js" ,
"js/modules/PageInfo.js" ,
"js/modules/ArDetect.js" ,
"js/modules/Resizer.js" ,
"js/conf/Keybinds.js" ,
"js/uw-bg.js"
]
} ,
2016-10-16 13:13:34 +02:00
"permissions" : [
2018-02-06 00:48:13 +01:00
"tabs" , "storage" , "activeTab" , "<all_urls>" , "webNavigation"
2016-10-16 13:13:34 +02:00
] ,
2018-01-08 22:48:45 +01: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"
2018-01-08 22:48:45 +01:00
} ,
2016-10-16 13:13:34 +02:00
"web_accessible_resources" : [
2018-01-18 00:11:03 +01:00
"js/*" ,
2017-09-24 01:54:46 +02:00
2018-01-18 00:11:03 +01:00
"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" ,
"res/css/uw_common.css" ,
"res/css/uw_yt.css" ,
"res/css/uw_netflix.css" ,
"res/css/uw_settings.css"
2018-02-04 20:22:12 +01:00
]
2016-10-16 13:13:34 +02:00
}