-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
44 lines (44 loc) · 1.26 KB
/
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
40
41
42
43
44
{
"manifest_version": 3,
"name": "Extractify",
"version": "1.5.2.1",
"description": "Companion to extract structured data online",
"homepage_url": "http://www.csi.mines-paristech.fr/equipe/ingenieurs-et-personnel-administratif/frederic-vergnaud/",
"icons": {
"48": "extension/views/icons/chrome_logo.png"
},
"host_permissions": [
"<all_urls>"
],
"permissions": [
"activeTab",
"tabs",
"webNavigation",
"storage"
],
"action": {
"default_icon": "extension/views/icons/chrome_logo.png",
"default_title": "Extractify"
},
"web_accessible_resources": [{
"resources": ["/extension/main_panel.html"],
"matches": [],
"extension_ids": []
}],
"background": {
"service_worker": "background_loader.js"
},
"content_scripts": [{
"matches": ["http://*/*", "https://*/*"],
"css": ["content/style.css"],
"js": [
"/extension/views/libs/jquery.js",
"/extension/views/libs/jquery-ui.js",
"/extension/views/libs/diff_match_patch.js",
"content/lang/en-lang.js",
"content/functions.js",
"content/content.js"
],
"run_at": "document_end"
}]
}