Trello plugin all-in-one - Truello
Tired of having too many extensions for Trello? Add missing features in ONE Chrome extension: Card age, number, count and lable name
Trello plugin all-in-one - Truello क्या है?
Trello plugin all-in-one - Truello Derrick Qin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Tired of having too many extensions for Trello? Add missing features in ONE Chrome extension: Card age, number, count and lable name"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Trello plugin all-in-one - Truello एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Thanks for using Truello, an all-in-one Trello plugin. ***NEW:*** [20231104] Well, I didn't realize this extension is used by so many people. This release is for you folks! There was a release of Trello website on 20 Oct 2023, which removed hidden card number and the total number of each list/column. I had to re-implement these features. It took me some time because Chrome Web Store no longer accepts Manifest V2 extensions. I had to migrate it to Manifest V3. So there yougo: version 2.0.0 is here. [20170815] Show full label name - fix it to revert the changes Trello did on 7th Aug [20170630] Now adding options to disable features excluding aging Features: 1. True age for the Trello card Trello has a card aging feature, but it does not show the true age of the card in a list. When you add a comment or update the card name, the card will be treated as new. The feature can tell you how long the card has been in the list. No excuse any more! 2. Card number Display the missing Trello card number. 3. Card count for each column Display the card count at top of the columns. 4. Label name Display the label names and still keep the color of them.
एक्सटेंशन की मूल जानकारी
नाम | Trello plugin all-in-one - Truello |
ID | pnfioopglhebphfgkagefdmajgibahkk |
आधिकारिक URL | https://chromewebstore.google.com/detail/trello-plugin-all-in-one/pnfioopglhebphfgkagefdmajgibahkk |
विवरण | Tired of having too many extensions for Trello? Add missing features in ONE Chrome extension: Card age, number, count and lable name |
फ़ाइल का आकार | 339 KB |
स्थापना संख्या | 8,758 |
वर्तमान संस्करण | 2.0.0 |
अंतिम अपडेट | 2023-11-07 |
प्रकाशन तिथि | 2019-04-27 |
रेटिंग | 3.92/5 कुल 13 रेटिंग्स |
डेवलपर | Derrick Qin |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/derrickqin/trello-plugin-all-in-one |
सहायता पृष्ठ URL | https://github.com/derrickqin/trello-plugin-all-in-one/issues |
गोपनीयता नीति पृष्ठ URL | https://github.com/derrickqin/trello-plugin-all-in-one/blob/main/privacy-policy.md |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Trello plugin all-in-one - Truello", "short_name": "Truello", "version": "2.0.0", "description": "Tired of having too many extensions for Trello? Add missing features in ONE Chrome extension: Card age, number, count and lable name", "author": "Derrick Qin", "permissions": [ "tabs", "storage", "scripting" ], "content_scripts": [ { "js": [ "thirdPartyLib\/moment.js", "truello.js" ], "run_at": "document_idle", "matches": [ "https:\/\/trello.com\/*" ] } ], "background": { "service_worker": "background.js" }, "options_ui": { "page": "options.html" } } |