53 lines
1.2 KiB
JSON
Executable file
53 lines
1.2 KiB
JSON
Executable file
{
|
|
"manifest_version": 2,
|
|
"name": "User-Agent Switcher",
|
|
"short_name": "useragent-switcher",
|
|
"version": "0.2.0",
|
|
|
|
"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",
|
|
"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"
|
|
},
|
|
"homepage_url": "http://add0n.com/useragent-switcher.html",
|
|
"options_ui": {
|
|
"page": "data/options/index.html",
|
|
"chrome_style": true
|
|
},
|
|
"content_scripts": [{
|
|
"all_frames": true,
|
|
"run_at": "document_start",
|
|
"match_about_blank": true,
|
|
"matches": ["*://*/*"],
|
|
"js": ["data/inject.js"]
|
|
}]
|
|
}
|