-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
41 lines (41 loc) · 1.07 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
35
36
37
38
39
40
41
{
"name": "Better Clipboard Inserter",
"description": "Clipboard inserter with extra features such as keeping state on page reload and being able to read from a URL instead of the clipboard.",
"version": "0.1.1",
"manifest_version": 2,
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"64": "icons/icon64.png"
},
"browser_action": {
"browser_style": true,
"default_icon": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"64": "icons/icon64.png"
},
"default_title": "Toggle Better Clipboard Inserter"
},
"permissions": [
"activeTab",
"scripting",
"storage",
"clipboardRead"
],
"optional_permissions": [
"<all_urls>"
],
"background": {
"scripts": ["background.js"]
},
"options_ui": {
"page": "options.html",
"browser_style": true
},
"browser_specific_settings": {
"gecko": {
"id": "better-clipboard-inserter@na2"
}
}
}