Go2ticket/go2ticket-firefox/manifest.json
Clément CHABANNE (Perso) b7eeb63eb1 v 1.0
2020-07-15 12:01:27 +02:00

42 lines
1.0 KiB
JSON

{
"manifest_version": 2,
"name": "Go2Ticket Firefox",
"version": "1.0",
"author": "Clément CHABANNE",
"description": "Allez directement à un numéro de ticket GLPI depuis son numéro.",
"homepage_url": "https://git.chabanne.ch/clement/Go2ticket",
"icons": {
"48": "icons/go2ticket.png"
},
"permissions": ["storage", "tabs"],
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_icon": "icons/go2ticket.png",
"default_title": "Go2Ticket",
"default_popup": "popup/go2ticket.html"
},
"options_ui": {
"page": "options/options.html",
"browser_style": false
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+U",
"linux": "Ctrl+Shift+L"
},
"description": "Send a 'toggle-feature' event"
},
"_execute_sidebar_action": {
"suggested_key": {
"default": "Alt+Shift+U",
"linux": "Alt+Shift+L"
},
"description": "Send a 'toggle-feature' event"
}
}
}