-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmanifest.json
47 lines (47 loc) · 1.1 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
45
46
47
{
"name": "Tabulazer - Table Filter and Sorter",
"version": "0.8.0",
"manifest_version": 3,
"description": "Filter, sort, page and style any existing HTML table using the Tabulator JS library.",
"default_locale": "en",
"homepage_url": "http://chrome-table-manager.ryadel.com",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"action": {
"default_icon": "icons/icon19.png",
"default_title": "Tabulazer",
"default_popup": "src/browser_action/browser_action.html"
},
"background": {
"service_worker": "src/worker/worker.js",
"type": "module"
},
"content_scripts": [
{
"matches": [ "<all_urls>" ],
"css": [],
"js": [ "src/content/js/content.js" ]
}
],
"permissions": [
"activeTab",
"contextMenus",
"storage",
"scripting"
],
"web_accessible_resources": [
{
"resources": [
"lib/*/*",
"src/common/*/*"
],
"matches": ["<all_urls>"]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}