Redmine Linker

Add a link near Github commit message with #issue_id to a Redmine story link.

Redmine Linker क्या है?

Redmine Linker tib.pierre द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add a link near Github commit message with #issue_id to a Redmine story link."।

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

screenshot

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

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

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

                        In Github, all your commits with "#issue_id" in the message will have a link to your Redmine story.

Don't forget to configure your Redmine URL in the extension settings
ex: http://redmine.example.com/issues/

Feel free to contribute, the source code is on Github https://github.com/T1l3/Redmine-Linker                    

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

नाम Redmine Linker Redmine Linker
ID gmjmmomjpocomeoobbodbniiojlahoep
आधिकारिक URL https://chromewebstore.google.com/detail/redmine-linker/gmjmmomjpocomeoobbodbniiojlahoep
विवरण Add a link near Github commit message with #issue_id to a Redmine story link.
फ़ाइल का आकार 46.2 KB
स्थापना संख्या 16
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2013-12-12
प्रकाशन तिथि 2013-12-12
डेवलपर tib.pierre
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "author": [
        {
            "name": "Thibault PIERRE",
            "email": "[email protected]"
        }
    ],
    "icons": {
        "16": "images\/redmineicon-16.png",
        "128": "images\/redmineicon-128.png"
    },
    "default_locale": "en",
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/redmineicon-19.png",
            "38": "images\/redmineicon-38.png"
        },
        "default_title": "Redmine Linker"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "js": [
                "bower_components\/jquery\/jquery.min.js",
                "scripts\/main.js"
            ],
            "css": [
                "styles\/main.css"
            ]
        }
    ],
    "options_page": "options.html",
    "web_accessible_resources": [
        "images\/redmineicon-16.png"
    ]
}