talkdesk-useragent-switcher/manifest.json

64 lines
1.6 KiB
JSON
Raw Normal View History

2017-09-13 03:18:12 -07:00
{
"manifest_version": 2,
2018-08-15 05:10:00 -07:00
"name": "User-Agent Switcher and Manager",
2018-04-10 00:50:58 -07:00
"short_name": "useragent-switcher",
2018-08-16 03:18:38 -07:00
"version": "0.2.4",
2017-09-13 03:18:12 -07:00
2018-08-15 05:10:00 -07:00
"description": "Spoofs User-Agent strings of your browser with a new one globally, randomly or per hostname",
2017-09-13 03:18:12 -07:00
"permissions": [
"tabs",
"storage",
"<all_urls>",
"webNavigation",
"webRequest",
"webRequestBlocking"
],
"icons": {
2018-05-15 00:54:51 -07:00
"16": "data/icons/active/16.png",
"18": "data/icons/active/18.png",
"19": "data/icons/active/19.png",
"32": "data/icons/active/32.png",
"36": "data/icons/active/36.png",
"38": "data/icons/active/38.png",
"48": "data/icons/active/48.png",
"64": "data/icons/active/64.png",
"128": "data/icons/active/128.png",
"256": "data/icons/active/256.png"
2017-09-13 03:18:12 -07:00
},
"background":{
"scripts":[
"data/popup/ua-parser.min.js",
2017-09-13 03:18:12 -07:00
"common.js"
]
},
"browser_action":{
"default_icon": {
"16": "data/icons/16.png",
"32": "data/icons/32.png",
"48": "data/icons/48.png",
"64": "data/icons/64.png"
},
"default_popup": "data/popup/index.html"
2017-09-14 05:50:53 -07:00
},
"homepage_url": "http://add0n.com/useragent-switcher.html",
"options_ui": {
"page": "data/options/index.html",
"chrome_style": true
},
2018-04-10 00:50:58 -07:00
"content_scripts": [{
"all_frames": true,
"run_at": "document_start",
"match_about_blank": true,
"matches": ["*://*/*"],
"js": ["data/inject.js"]
2018-05-15 00:54:51 -07:00
}],
"applications": {
"gecko": {
"id": "{a6c4a591-f1b2-4f03-b3ff-767e5bedf4e7}",
"strict_min_version": "52.0"
}
}
2017-09-13 03:18:12 -07:00
}