Slack-Rally Extensions

This extension hyperlinkifies your rally items on slack

Slack-Rally Extensions क्या है?

Slack-Rally Extensions Cheng द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension hyperlinkifies your rally items on slack"।

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

screenshot

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

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

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

                        This extension will hyperlinkify your rally items on slack website.
i.e. your rally items on Slack will be CLICKABLE! It will open rally links in the new tab which has the items you requested.


Currently it only supports DE, US and TA and will work on *.slack.com 

Try type US123, DE456, TA789 in your channels!

You may need to login to rally in the first time when you use it.
Author: Cheng
For any bug reports and suggestions
[email protected]                    

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

नाम Slack-Rally Extensions Slack-Rally Extensions
ID alfkgcbidjlmbgbnhhabciookcoiomkf
आधिकारिक URL https://chromewebstore.google.com/detail/slack-rally-extensions/alfkgcbidjlmbgbnhhabciookcoiomkf
विवरण This extension hyperlinkifies your rally items on slack
फ़ाइल का आकार 166 KB
स्थापना संख्या 39
वर्तमान संस्करण 0.5.1
अंतिम अपडेट 2016-02-01
प्रकाशन तिथि 2016-02-01
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Cheng
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/daily2432121/ChromeExtensionProjectTemplate1
सहायता पृष्ठ URL https://github.com/daily2432121/ChromeExtensionProjectTemplate1
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Slack-Rally Extensions",
    "description": "This extension hyperlinkifies your rally items on slack",
    "version": "0.5.1",
    "content_security_policy": "script-src 'self' https:\/\/*.jquery.com; object-src 'self'",
    "permissions": [
        "https:\/\/*.rallydev.com\/*",
        "https:\/\/*.slack.com\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "jquery-1.11.1.min.js",
                "jquery-ui.js",
                "jquery.dialogextend.js",
                "jquery.timer.js",
                "content.js"
            ],
            "matches": [
                "http:\/\/*.slack.com\/*",
                "https:\/\/*.slack.com\/*"
            ],
            "css": [
                "jquery-ui.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_popup": "option.html"
    }
}