-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathmanifest.json
41 lines (41 loc) · 1.14 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
{
"manifest_version": 3,
"name": "Odoo Debug",
"version": "5.0",
"description": "Minimal and fast extension to toggle debug mode of Odoo",
"action": {
"default_title": "- Click for normal debug \n- Double click for debug with assets",
"default_icon": {
"16": "/images/icons/off_16.png",
"32": "/images/icons/off_32.png",
"48": "/images/icons/off_48.png"
}
},
"icons": {
"16": "/images/icons/off_16.png",
"32": "/images/icons/off_32.png",
"48": "/images/icons/off_48.png"
},
"author": "Droggol Infotech Private Limited",
"background": {
"service_worker": "background.js"
},
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["contentScript.js"]
}],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Period"
}
}
},
"incognito": "spanning",
"offline_enabled": true,
"permissions": ["tabs"],
"web_accessible_resources": [{
"resources": ["pageScript.js"],
"matches": ["<all_urls>"]
}]
}