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…
Co je trello-board?
trello-board je rozšíření Chrome vyvinuté rotagi37, a jeho hlavní funkcí je „enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…“.
Stáhnout soubor CRX rozšíření trello-board
Stáhněte si soubory rozšíření trello-board ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | |
ID | ndeahieadodljlbnmhkiminjacaalakm |
Oficiální URL | https://chrome.google.com/webstore/detail/trello-board/ndeahieadodljlbnmhkiminjacaalakm |
Popis | enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy… |
Velikost souboru | 65.42 KB |
Počet instalací | 42 |
Aktuální Verze | 1.0.1.6 |
Poslední Aktualizace | 2017-09-27 |
Datum Vydání | 2017-09-27 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | rotagi37 |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" } ] } |