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
|
{
"manifest_version": 2,
"name": "Chrome Copy URLs From All Tabs",
"description": "What the name says",
"version": "0.2.0",
"icons": {
"16": "images/icon-16.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"browser_action": {
"default_icon": {
"19": "images/icon-19.png",
"38": "images/icon-38.png"
}
},
"options_page": "options.html",
"background": {
"scripts": ["chrome-get-urls-from-tabs-in-windows.js", "background.js"],
"persistent": false
},
"permissions": [
"tabs",
"storage"
]
}
|