Trello custom progress bar
Customize you Trello progress bar
Hvad er Trello custom progress bar?
Trello custom progress bar er en Chrome-udvidelse udviklet af topaztee, og dens hovedfunktion er "Customize you Trello progress bar".
Udvidelsesskærmbilleder
Download Trello custom progress bar-udvidelses-CRX-fil
Download Trello custom progress bar-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
Change the boring blue progress bar to something else. To change the progress bar, right click the extension icon, and choose options.
Grundlæggende oplysninger om udvidelsen
Navn | Trello custom progress bar |
ID | afbaaokfpieehjeffeceajdopnlempob |
Officiel URL | https://chromewebstore.google.com/detail/trello-custom-progress-ba/afbaaokfpieehjeffeceajdopnlempob |
Beskrivelse | Customize you Trello progress bar |
Filstørrelse | 50.44 KB |
Antal Installationer | 46 |
Nuværende Version | 1.2 |
Senest Opdateret | 2019-04-29 |
Udgivelsesdato | 2019-04-29 |
Bedømmelse | 2.33/5 Samlet 3 Bedømmelser |
Udvikler | topaztee |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" } |