talkdesk-useragent-switcher/manifest.json

52 lines
1.1 KiB
JSON
Raw Normal View History

2017-09-13 03:18:12 -07:00
{
"manifest_version": 2,
"name": "User-Agent Switcher",
2017-12-13 04:50:40 -08:00
"version": "0.1.4",
2017-09-13 03:18:12 -07:00
"description": "Spoofs User-Agent strings of your browser",
"permissions": [
"tabs",
"storage",
"<all_urls>",
"webNavigation",
"webRequest",
"webRequestBlocking"
],
"icons": {
"16": "data/icons/16.png",
"32": "data/icons/32.png",
"48": "data/icons/48.png",
"64": "data/icons/64.png",
"128": "data/icons/128.png",
"256": "data/icons/256.png"
},
"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
},
"applications": {
"gecko": {
"id": "{a6c4a591-f1b2-4f03-b3ff-767e5bedf4e7}",
"strict_min_version": "52.0"
}
}
2017-09-13 03:18:12 -07:00
}