2018-01-18 00:11:03 +01:00
{
"manifest_version" : 2 ,
"name" : "Ultrawidify" ,
2018-02-06 00:48:13 +01:00
"version" : "2.1.1" ,
2018-01-18 00:11:03 +01:00
"icons" : {
"32" : "res/icons/uw-32.png" ,
"64" : "res/icons/uw-64.png"
} ,
2018-02-06 00:48:13 +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
"content_scripts" : [ {
"matches" : [ "*://*/*" ] ,
"js" : [
2018-02-06 00:48:13 +01:00
"js/dep/jquery-3.1.1.js" ,
"js/run/GlobalVars.js" ,
"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" ] ,
2018-01-18 00:11:03 +01:00
"all_frames" : true
} ] ,
2018-02-06 00:48:13 +01:00
"background" : {
"scripts" : [
"js/dep/jquery-3.1.1.js" ,
"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"
]
} ,
2018-01-18 00:11:03 +01:00
"permissions" : [
2018-02-06 00:48:13 +01:00
"tabs" , "storage" , "activeTab" , "<all_urls>" , "webNavigation"
2018-01-18 00:11:03 +01:00
] ,
"browser_action" : {
"default_icon" : "res/icons/uw-32.png" ,
"default_popup" : "res/popup/popup.html" ,
"default_title" : "Ultrawidify"
} ,
"web_accessible_resources" : [
2018-02-06 00:48:13 +01:00
"js/*" ,
2018-01-18 00:11:03 +01:00
2018-02-06 00:48:13 +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" ,
2018-01-18 00:11:03 +01:00
2018-02-06 00:48:13 +01:00
"res/css/uw_common.css" ,
"res/css/uw_yt.css" ,
"res/css/uw_netflix.css" ,
"res/css/uw_settings.css"
]
2018-01-18 00:11:03 +01:00
}