Trello custom progress bar
Customize you Trello progress bar
Trello custom progress bar क्या है?
Trello custom progress bar topaztee द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Customize you Trello progress bar"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Trello custom progress bar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Change the boring blue progress bar to something else. To change the progress bar, right click the extension icon, and choose options.
एक्सटेंशन की मूल जानकारी
नाम | Trello custom progress bar |
ID | afbaaokfpieehjeffeceajdopnlempob |
आधिकारिक URL | https://chromewebstore.google.com/detail/trello-custom-progress-ba/afbaaokfpieehjeffeceajdopnlempob |
विवरण | Customize you Trello progress bar |
फ़ाइल का आकार | 50.44 KB |
स्थापना संख्या | 46 |
वर्तमान संस्करण | 1.2 |
अंतिम अपडेट | 2019-04-29 |
प्रकाशन तिथि | 2019-04-29 |
रेटिंग | 2.33/5 कुल 3 रेटिंग्स |
डेवलपर | topaztee |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" } |