-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
39 lines (37 loc) · 966 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
{
"manifest_version": 2,
"name": "連番ダウンローダー: Download numbered images",
"version": "1.2.1",
"description": "An extension that downloads a batch of images from a website and numbers them consecutively.",
"homepage_url": "https://github.com/OkanoShinri/Download-Numbered-Images",
"icons": {
"48": "icons/48.png",
"96": "icons/96.png"
},
"permissions": [
"<all_urls>",
"tabs",
"activeTab",
"downloads",
"storage",
"notifications",
"menus"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["src/content_scripts/send_selection.js"]
}
],
"browser_action": {
"default_icon": "icons/32.png",
"default_title": "連番ダウンローダー: Download numbered images",
"default_popup": "src/popup/popup.html"
},
"options_ui": {
"page": "src/option/options.html"
},
"background": {
"scripts": ["src/background-scripts/background.js"]
}
}