diff --git a/Go2ticket.zip b/Go2ticket.zip new file mode 100644 index 0000000..ecb0310 Binary files /dev/null and b/Go2ticket.zip differ diff --git a/go2ticket-firefox/background.js b/go2ticket-firefox/background.js new file mode 100644 index 0000000..433fa97 --- /dev/null +++ b/go2ticket-firefox/background.js @@ -0,0 +1,13 @@ + +browserAction.onClicked.addListener(function(tab) { +if (localStorage.getItem("url") == null) { + var url = false; +}else{ + var url = localStorage.getItem("url"); +} +tabs.executeScript({ + code: '' +}); + + +}); \ No newline at end of file diff --git a/go2ticket-firefox/icons/go2ticket.png b/go2ticket-firefox/icons/go2ticket.png new file mode 100644 index 0000000..8841057 Binary files /dev/null and b/go2ticket-firefox/icons/go2ticket.png differ diff --git a/go2ticket-firefox/manifest.json b/go2ticket-firefox/manifest.json new file mode 100644 index 0000000..56f4731 --- /dev/null +++ b/go2ticket-firefox/manifest.json @@ -0,0 +1,42 @@ +{ + "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" + } + } +} \ No newline at end of file diff --git a/go2ticket-firefox/options/options.html b/go2ticket-firefox/options/options.html new file mode 100644 index 0000000..fdc55cc --- /dev/null +++ b/go2ticket-firefox/options/options.html @@ -0,0 +1,14 @@ + + +
+ + + + + + + + + + + \ No newline at end of file diff --git a/go2ticket-firefox/options/options.js b/go2ticket-firefox/options/options.js new file mode 100644 index 0000000..b896c20 --- /dev/null +++ b/go2ticket-firefox/options/options.js @@ -0,0 +1,12 @@ +function save_options() { + var url = document.getElementById('url').value; + localStorage.setItem("url", url); + alert(url); +} +function url() +{ + document.getElementById("url").value=localStorage.getItem("url"); +} + +document.getElementById('save').addEventListener('click', save_options); +url(); \ No newline at end of file diff --git a/go2ticket-firefox/popup/go2ticket.css b/go2ticket-firefox/popup/go2ticket.css new file mode 100644 index 0000000..f374781 --- /dev/null +++ b/go2ticket-firefox/popup/go2ticket.css @@ -0,0 +1,4 @@ +html, body { + width: 300px; + background-color: black; + } \ No newline at end of file diff --git a/go2ticket-firefox/popup/go2ticket.html b/go2ticket-firefox/popup/go2ticket.html new file mode 100644 index 0000000..279aadd --- /dev/null +++ b/go2ticket-firefox/popup/go2ticket.html @@ -0,0 +1,14 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/go2ticket-firefox/popup/go2ticket.js b/go2ticket-firefox/popup/go2ticket.js new file mode 100644 index 0000000..f172a11 --- /dev/null +++ b/go2ticket-firefox/popup/go2ticket.js @@ -0,0 +1,2 @@ +document.getElementById("form").action=localStorage.getItem("url"); +//browserAction.closePopup(); \ No newline at end of file