Trello Card Aging
Provides some features for Trello, related with the card activity
Trello Card Aging क्या है?
Trello Card Aging fernand-o द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Provides some features for Trello, related with the card activity"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Trello Card Aging एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Provides some features for Trello, related with the card activity: - Last activity Creates an indicator at the bottom of the card, that shows the time difference between now and the last activity of the card. - Card age Creates an indicator at the bottom of the card, that shows the time difference between now and the card creation. - Aging effect The aging effect is the same as the one provided from the Card Aging power-up, except for one detail: In the official power up, the card aging is removed if someone just change the card position (drag and drop) inside a list. This extension considers the last activity of the card, what might be a comment, attachment, anything who left a log inside the card. The aging is applied in 3 states, at 7, 14, or 28 days without any action in the card. This project is open-source, feel free to contribute or make a suggestion: https://github.com/fernand-o/trello-card-aging
एक्सटेंशन की मूल जानकारी
नाम | Trello Card Aging |
ID | eldafhhjhnfgkhpnicalopgocdbehkgj |
आधिकारिक URL | https://chromewebstore.google.com/detail/trello-card-aging/eldafhhjhnfgkhpnicalopgocdbehkgj |
विवरण | Provides some features for Trello, related with the card activity |
फ़ाइल का आकार | 111 KB |
स्थापना संख्या | 908 |
वर्तमान संस्करण | 1.8 |
अंतिम अपडेट | 2018-06-01 |
प्रकाशन तिथि | 2018-06-01 |
रेटिंग | 5.00/5 कुल 8 रेटिंग्स |
डेवलपर | fernand-o |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/fernand-o/trello-card-aging |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Trello Card Aging", "version": "1.8", "description": "Provides some features for Trello, related with the card activity", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/trello.com\/b\/*" ], "js": [ "jquery-3.1.0.js", "logic.js" ], "css": [ "style.css" ], "run_at": "document_start" } ], "icons": { "64": "icon64.png", "128": "icon128.png", "256": "icon256.png" }, "browser_action": { "default_icon": "icon64.png", "default_popup": "options.html" }, "author": "fernand-o", "background": { "scripts": [ "jquery-3.1.0.js", "background.js" ] }, "permissions": [ "tabs", "storage", "https:\/\/trello.com\/b\/*" ] } |