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…
Hvad er trello-board?
trello-board er en Chrome-udvidelse udviklet af rotagi37, og dens hovedfunktion er "enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…".
Download trello-board-udvidelses-CRX-fil
Download trello-board-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | ndeahieadodljlbnmhkiminjacaalakm |
Officiel URL | https://chrome.google.com/webstore/detail/trello-board/ndeahieadodljlbnmhkiminjacaalakm |
Beskrivelse | enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy… |
Filstørrelse | 65.42 KB |
Antal Installationer | 42 |
Nuværende Version | 1.0.1.6 |
Senest Opdateret | 2017-09-27 |
Udgivelsesdato | 2017-09-27 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | rotagi37 |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" } ] } |