-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
34 lines (34 loc) · 1.17 KB
/
manifest.json
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
32
33
34
{
"manifest_version": 2,
"name": "Amazon Smiley",
"short_name": "AmznSmiley",
"version": "1.9",
"description": "Automatically load Amazon Smile (using HTTPS) when you navigate to an Amazon page, in order to donate a portion of your purchase to the charity of your choice. This extension works with Firefox Quantum, and supports amazon.com, amazon.co.uk, and amazon.de, which are the only three Amazon country sites that support Smile as of November 2017. The extension asks for only the minimum privileges that are required to redirect requests. The code is open-source and may be viewed at the homepage URL (on GitHub).",
"homepage_url": "https://github.com/eukaryote/amazonsmiley",
"permissions": [
"storage",
"webRequest",
"webRequestBlocking",
"*://amazon.com/*",
"*://www.amazon.com/*",
"*://amazon.co.uk/*",
"*://www.amazon.co.uk/*",
"*://amazon.de/*",
"*://www.amazon.de/*"
],
"options_ui": {
"page": "options.html",
"browser_style": true,
"chrome_style": true
},
"background": {
"scripts": [
"browser-polyfill.js",
"background.js"
]
},
"icons": {
"48": "icon.svg",
"96": "icon.svg"
}
}