Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Odoo Toolbox", "description": "Enhances the experience of Odoo developers and Odoo.SH users by adding a variety of tools and features.", "version": "1.6.3", "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "permissions": [ "storage", "tabs", "alarms", "scripting", "clipboardWrite" ], "web_accessible_resources": [ { "matches": [ "*:\/\/*\/*" ], "resources": [ "odoo-websites.js" ] } ], "commands": { "_execute_action": { "description": "Open the extension popup" }, "toggle-debug": { "description": "Toggle debug mode", "suggested_key": { "default": "Ctrl+Shift+D", "mac": "Command+Shift+D" } } }, "host_permissions": [ "*:\/\/*\/*" ], "background": { "service_worker": "background.js" }, "action": { "default_title": "Odoo Toolbox", "default_popup": "popup.html" }, "devtools_page": "devtools.html", "options_ui": { "open_in_tab": true, "page": "options.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [ "content-scripts\/global.css" ], "js": [ "content-scripts\/global.js" ] }, { "matches": [ "https:\/\/*.odoo.sh\/project*" ], "css": [ "content-scripts\/odoosh.css" ], "js": [ "content-scripts\/odoosh.js" ] } ] }