Slack-Rally Extensions

This extension hyperlinkifies your rally items on slack

什麼是Slack-Rally Extensions?

Slack-Rally Extensions是由Cheng開發的Chrome擴展程式,該擴展的主要功能是“This extension hyperlinkifies your rally items on slack”。

擴展截圖

screenshot

下載Slack-Rally Extensions擴展crx文件

下載Slack-Rally Extensions擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}