trello-board
enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…
Cos'è trello-board?
trello-board è un'estensione di Chrome sviluppata da rotagi37, e la sua funzione principale è "enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…".
Scarica il file CRX dell'estensione trello-board
Scarica i file di estensione trello-board in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy access to the list from the extension icon
Informazioni di Base sull'Estensione
Nome | |
ID | ndeahieadodljlbnmhkiminjacaalakm |
URL Ufficiale | https://chrome.google.com/webstore/detail/trello-board/ndeahieadodljlbnmhkiminjacaalakm |
Descrizione | enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy… |
Dimensione del File | 65.42 KB |
Conteggio Installazioni | 42 |
Versione Corrente | 1.0.1.6 |
Ultimo Aggiornamento | 2017-09-27 |
Data di Pubblicazione | 2017-09-27 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | rotagi37 |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "trello-board", "manifest_version": 2, "version": "1.0.1.6", "icons": { "16": "icon.png", "32": "icon.png", "48": "icon.png" }, "permissions": [ "history", "contextMenus", "clipboardWrite", "clipboardRead", "webRequest", "webRequestBlocking", "tabs", "https:\/\/trello.com\/*" ], "options_page": "options.html", "background": { "scripts": [ "\/bg.js" ] }, "browser_action": { "default_icon": { "16": "icon.png", "32": "icon.png", "48": "icon.png" }, "default_title": "Trello Board", "default_popup": "popup.html" }, "content_scripts": [ { "all_frames": true, "css": [], "js": [ "jquery-3.2.1.min.js", "cscript.js" ], "matches": [ "https:\/\/trello.com\/*" ], "run_at": "document_end" } ] } |