Trello My Cards Prioritization

My Cards prioritization.

Trello My Cards Prioritization क्या है?

Trello My Cards Prioritization https://www.netmagnet.cz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "My Cards prioritization."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Trello My Cards Prioritization एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Trello My Cards Prioritization Trello My Cards Prioritization
ID bpbkpegngbkknmghhjbeekjdphjhkdif
आधिकारिक URL https://chromewebstore.google.com/detail/trello-my-cards-prioritiz/bpbkpegngbkknmghhjbeekjdphjhkdif
विवरण My Cards prioritization.
फ़ाइल का आकार 53.05 KB
स्थापना संख्या 19
वर्तमान संस्करण 1.1.1
अंतिम अपडेट 2019-12-11
प्रकाशन तिथि 2019-12-11
डेवलपर https://www.netmagnet.cz
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://www.netmagnet.cz
समर्थित भाषाएँ 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"
    }
}