Trello My Cards Prioritization
My Cards prioritization.
Qu'est-ce que Trello My Cards Prioritization ?
Trello My Cards Prioritization est une extension Chrome développée par https://www.netmagnet.cz, et sa fonction principale est "My Cards prioritization.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Trello My Cards Prioritization
Téléchargez les fichiers d'extension Trello My Cards Prioritization au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Visual prioritization of My Cards page list in Trello. NOT in a standard board view. Extension changes card's visual appearance based on its presence in a list: Ideas: light transparency Todo: without change Doing: highlighted To Deploy: highlighted Done: hidden Postponed: heavy transparency Cancelled: hidden These list names can be substrings, so cards in list "Done 2019-09-19" will be hidden. Updates in v1.0.0: - correctly detect page and content change so this extension works again :) Updates in v1.1.1: - Add "To Deploy" list name - Fix css class names
Informations de Base sur l'Extension
Nom | Trello My Cards Prioritization |
ID | bpbkpegngbkknmghhjbeekjdphjhkdif |
URL Officiel | https://chromewebstore.google.com/detail/trello-my-cards-prioritiz/bpbkpegngbkknmghhjbeekjdphjhkdif |
Description | My Cards prioritization. |
Taille du Fichier | 53.05 KB |
Nombre d'Installations | 19 |
Version Actuelle | 1.1.1 |
Dernière Mise à Jour | 2019-12-11 |
Date de Publication | 2019-12-11 |
Développeur | https://www.netmagnet.cz |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://www.netmagnet.cz |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trello My Cards Prioritization", "short_name": "Trello My Cards Prio", "description": "My Cards prioritization.", "version": "1.1.1", "author": "Tomas Kouba", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "https:\/\/trello.com\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "js": [ "jquery-3.2.1.min.js", "bootstrap.js", "mycards.js" ] } ], "web_accessible_resources": [ "style.css" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |