-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathmanifest.json
More file actions
31 lines (27 loc) · 792 Bytes
/
Copy pathmanifest.json
File metadata and controls
31 lines (27 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"description": "Provides a quick way of changing the HTTP Accept-Language header so you can view and test websites with a different locale.",
"manifest_version": 2,
"name": "Quick Accept-Language Switcher",
"version": "1.1",
"homepage_url": "https://github.com/callahad/quick-accept-language-switcher",
"icons": {
"128": "icon.svg"
},
"applications": {
"gecko": {
"id": "jid0-NcwayVfS7QQXyCTUSrues9dvdMs@jetpack",
"strict_min_version": "45.0"
}
},
"permissions": [
"webRequest", "webRequestBlocking", "http://*/*", "https://*/*"
],
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_icon": "icon.svg",
"default_title": "Change Accept-Language header",
"default_popup": "popup.html"
}
}