Trello custom progress bar
Customize you Trello progress bar
Co je Trello custom progress bar?
Trello custom progress bar je rozšíření Chrome vyvinuté topaztee, a jeho hlavní funkcí je „Customize you Trello progress bar“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Trello custom progress bar
Stáhněte si soubory rozšíření Trello custom progress bar 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í
Change the boring blue progress bar to something else. To change the progress bar, right click the extension icon, and choose options.
Základní Informace o Rozšíření
Název | Trello custom progress bar |
ID | afbaaokfpieehjeffeceajdopnlempob |
Oficiální URL | https://chromewebstore.google.com/detail/trello-custom-progress-ba/afbaaokfpieehjeffeceajdopnlempob |
Popis | Customize you Trello progress bar |
Velikost souboru | 50.44 KB |
Počet instalací | 46 |
Aktuální Verze | 1.2 |
Poslední Aktualizace | 2019-04-29 |
Datum Vydání | 2019-04-29 |
Hodnocení | 2.33/5 Celkem 3 Hodnocení |
Vývojář | topaztee |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trello custom progress bar", "short_name": "Trello custom progress bar", "description": "Customize you Trello progress bar", "version": "1.2", "permissions": [ "tabs", "storage", "webNavigation" ], "browser_action": { "default_title": "blahblah", "default_icon": { "32": "32.png" } }, "background": { "matches": [ "*:\/\/trello.com\/c\/*" ], "scripts": [ "background.js" ], "persistent": false }, "icons": { "32": "32.png", "48": "48.png", "128": "128.png" }, "content_scripts": [ { "matches": [ "*:\/\/trello.com\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ "*.png" ], "options_page": "options.html" } |