forked from st900278/Imgur-Uploader-Firefox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
42 lines (38 loc) · 951 Bytes
/
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
35
36
37
38
39
40
41
42
{
"manifest_version": 2,
"name": "Imgur-Uploader",
"version": "1.6.1",
"author": "oberonfrog",
"homepage_url": "https://github.com/st900278/Imgur-Uploader-Firefox",
"description": "Image Upload addon for firefox",
"icons": {
"48": "icons/favicon.png"
},
"permissions": [
"storage",
"clipboardWrite",
"menus",
"activeTab",
"notifications",
"<all_urls>"
],
"background": {
"scripts": [
"./build/js/background.bundle.js"
]
},
"content_scripts": [{
"matches": ["*://*/*"],
"js": ["./build/js/content.bundle.js"]
},{
"matches": ["*://imgur.com/*"],
"js": ["./build/js/token.bundle.js"]
}],
"options_ui": {
"page": "templates/settings/options.html",
"open_in_tab": true
},
"browser_action": {
"default_popup": "templates/popup.html"
}
}