-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathmanifest.json
More file actions
38 lines (38 loc) · 830 Bytes
/
manifest.json
File metadata and controls
38 lines (38 loc) · 830 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
32
33
34
35
36
37
38
{
"name": "Paper-extension",
"version": "1.1.0",
"description": "Paper-extension syncs highlighted text to a dropbox paper",
"manifest_version": 2,
"background": {
"scripts": ["js/paper.js"],
"persistent": false
},
"browser_action": {
"default_icon": {
"16": "img/icon-small.png",
"48": "img/icon-medium.png",
"128": "img/icon-large.png"
}
},
"content_scripts": [
{
"matches": ["https://wdlsvnit.github.io/paper-extension/*"],
"js": ["contentScript.js"]
},
{
"matches": ["http://*/*", "https://*/*"],
"js": ["js/getPaperList.js"]
}
],
"permissions": [
"activeTab",
"contextMenus",
"storage",
"tabs"
],
"icons": {
"16": "img/icon-small.png",
"48": "img/icon-medium.png",
"128": "img/icon-large.png"
}
}