Trello Prime

Use Trello with some cool features.

Trello Prime क्या है?

Trello Prime thearchitgarg द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Use Trello with some cool features."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        - You will be able to see the card ID when a card is open (HOT FEATURE)
- Change your custom background color w/o changing color for all the teammates.
- You can see the trello card short id on every card (which you can use to refrence cards in standup meetings or to name your git branches)
- Now you will be able to see the label text on each card.
- Turn ON/OFF any of these features anytime. 
- Cool UI & lightweight plugin(screenshots attached)
- Results in increased productivity and will help to name your branches.

More cool features coming soon so add this to your chrome so that it will be automatically updated whenever a new version will arrive. Write in the comments if you would like to have any new feature or you face any issue, I will try to respond as quickly as possible.                    

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

नाम Trello Prime Trello Prime
ID mkphpfbogfpojbbmbdhfcboleippkffh
आधिकारिक URL https://chromewebstore.google.com/detail/trello-prime/mkphpfbogfpojbbmbdhfcboleippkffh
विवरण Use Trello with some cool features.
फ़ाइल का आकार 149 KB
स्थापना संख्या 150
वर्तमान संस्करण 1.0.2
अंतिम अपडेट 2019-08-18
प्रकाशन तिथि 2019-08-18
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर thearchitgarg
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello Prime",
    "short_name": "Trel-Prime",
    "description": "Use Trello with some cool features.",
    "version": "1.0.2",
    "browser_action": {
        "default_icon": "assets\/logo.png",
        "default_popup": "popup.html",
        "default_title": "Trello Prime"
    },
    "icons": {
        "128": "assets\/logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.trello.com\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "scripts\/content_script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "*:\/\/trello.com\/*",
        "tabs",
        "storage"
    ]
}