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…
Was ist trello-board?
trello-board ist eine Chrome-Erweiterung, die von rotagi37 entwickelt wurde, und ihr Hauptmerkmal ist "enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…".
trello-board-Erweiterungs-CRX-Datei herunterladen
Laden Sie trello-board-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | |
ID | ndeahieadodljlbnmhkiminjacaalakm |
Offizielle URL | https://chrome.google.com/webstore/detail/trello-board/ndeahieadodljlbnmhkiminjacaalakm |
Beschreibung | enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy… |
Dateigröße | 65.42 KB |
Installationsanzahl | 42 |
Aktuelle Version | 1.0.1.6 |
Letztes Update | 2017-09-27 |
Veröffentlichungsdatum | 2017-09-27 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | rotagi37 |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } ] } |