Slack-Rally Extensions

This extension hyperlinkifies your rally items on slack

Slack-Rally Extensionsคืออะไร?

Slack-Rally Extensions เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Cheng และคุณลักษณะหลักของมันคือ "This extension hyperlinkifies your rally items on slack"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Slack-Rally Extensions

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    }
}