-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
37 lines (37 loc) · 890 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
{
"manifest_version": 2,
"version": "0.1",
"name": "Bank Scraper",
"short_name": "Bank Scraper",
"description": "Tool for data extraction from websites",
"permissions": ["<all_urls>", "tabs", "storage", "unlimitedStorage", "downloads","declarativeContent"],
"icons": {
"16": "assets/images/icon16.png",
"48": "assets/images/icon48.png",
"128": "assets/images/icon128.png"
},
"web_accessible_resources": [
"assets/images/icon16.png",
"assets/images/icon48.png",
"assets/images/icon128.png",
"assets/images/icon19.png",
"assets/images/icon38.png"
],
"browser_action": {
"default_icon": "assets/images/icon16.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": [
"content_script.js"
],
"run_at": "document_end"
}
],
"background": {
"scripts": ["background_script.js"],
"persistent": false
}
}