Trello custom progress bar
Customize you Trello progress bar
Vad är Trello custom progress bar?
Trello custom progress bar är en Chrome-tillägg utvecklad av topaztee, och dess huvudfunktion är "Customize you Trello progress bar".
Tilläggsskärmbilder
Ladda ner Trello custom progress bar-förlängningens CRX-fil
Ladda ner Trello custom progress bar-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Change the boring blue progress bar to something else.
To change the progress bar, right click the extension icon, and choose options. Grundläggande Information om Tillägg
| Namn | |
| ID | afbaaokfpieehjeffeceajdopnlempob |
| Officiell webbadress | https://chromewebstore.google.com/detail/trello-custom-progress-ba/afbaaokfpieehjeffeceajdopnlempob |
| Beskrivning | Customize you Trello progress bar |
| Filstorlek | 50.44 KB |
| Antal Installationer | 46 |
| Aktuell Version | 1.2 |
| Senast Uppdaterad | 2019-04-29 |
| Publiceringsdatum | 2019-04-29 |
| Betyg | 2.33/5 Totalt 3 Betyg |
| Utvecklare | topaztee |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
} | |