-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathfirefox_manifest.json
More file actions
38 lines (38 loc) · 982 Bytes
/
firefox_manifest.json
File metadata and controls
38 lines (38 loc) · 982 Bytes
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
{
"name": "Odoo Debug",
"version": "5.0",
"manifest_version": 2,
"description": "Minimal and fast extension to toggle debug mode of Odoo",
"short_name": "Odoo Debug",
"browser_action": {
"default_icon": "/images/icons/off_48.png",
"default_title": "- Click for normal debug \n- Double click for debug with assets"
},
"incognito": "spanning",
"background": {
"scripts": ["background.js"]
},
"permissions": ["tabs"],
"icons": {
"48": "/images/icons/off_48.png"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Period"
}
}
},
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["contentScript.js"]
}],
"web_accessible_resources": [
"pageScript.js"
],
"applications": {
"gecko": {
"id": "odoo-debug-extension@odoo.com"
}
}
}