-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmanifest.json
More file actions
31 lines (31 loc) · 736 Bytes
/
manifest.json
File metadata and controls
31 lines (31 loc) · 736 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
{
"manifest_version": 2,
"name": "Process Google Dataset",
"description": "This extension creates a dataset from a Google Image search.",
"version": "0.0.1",
"content_scripts": [
{
"matches": [
"https://www.google.com/*tbm=isch*"
],
"js": [
"index.js"
]
}
],
"permissions": [
"downloads",
"downloads.open",
"downloads.shelf"
],
"icons": {
"16": "logo.png",
"48": "logo.png",
"128": "logo.png"
},
"browser_action": {
"default_icon": "logo.png",
"default_popup": "popup.html",
"default_title": "Process Google Dataset"
}
}