Money for Trello

This extension adds a cost for each card in trello

Money for Trello क्या है?

Money for Trello Beinno द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension adds a cost for each card in trello"।

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

screenshot
screenshot

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

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

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

                        This extension is very usefull to know every card cost for Trello.
It's based on scrum points. every card should have approximate estimate in it's title like an example:
(2) Testing title
Cost for cards like the above example are determined based on card estimate which is 2 for the above example.
Point cost can be determined via extension options page                    

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

नाम Money for Trello Money for Trello
ID acfcndamepdchedecnjanbdhbmhijchd
आधिकारिक URL https://chromewebstore.google.com/detail/money-for-trello/acfcndamepdchedecnjanbdhbmhijchd
विवरण This extension adds a cost for each card in trello
फ़ाइल का आकार 3.78 MB
स्थापना संख्या 71
वर्तमान संस्करण 1.9
अंतिम अपडेट 2016-11-12
प्रकाशन तिथि 2016-11-12
रेटिंग 5.00/5 कुल 4 रेटिंग्स
डेवलपर Beinno
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Money for Trello",
    "description": "This extension adds a cost for each card in trello",
    "version": "1.9",
    "web_accessible_resources": [
        "css\/*",
        "img\/*.png"
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.trello.com\/*",
                "https:\/\/www.trello.com\/*",
                "http:\/\/trello.com\/*",
                "https:\/\/trello.com\/*",
                "https:\/\/*.cloudfront.net\/*",
                "file:\/\/\/*\/*.*"
            ],
            "js": [
                "js\/libs\/jquery\/dist\/jquery.min.js",
                "js\/main.js"
            ],
            "css": [
                "css\/main.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "options_page": "options.html"
}