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…
Wat is trello-board?
trello-board is een Chrome-extensie ontwikkeld door rotagi37, en de belangrijkste functie is "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 het CRX-bestand van de extensie trello-board
Download trello-board-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | ndeahieadodljlbnmhkiminjacaalakm |
Officiële URL | https://chrome.google.com/webstore/detail/trello-board/ndeahieadodljlbnmhkiminjacaalakm |
Beschrijving | enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy… |
Bestandsgrootte | 65.42 KB |
Aantal Installaties | 42 |
Huidige Versie | 1.0.1.6 |
Laatst Bijgewerkt | 2017-09-27 |
Publicatiedatum | 2017-09-27 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | rotagi37 |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } ] } |