Slack-Rally Extensions
This extension hyperlinkifies your rally items on slack
Slack-Rally Extensions là gì?
Slack-Rally Extensions là một tiện ích mở rộng Chrome được phát triển bởi Cheng, và tính năng chính của nó là "This extension hyperlinkifies your rally items on slack".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Slack-Rally Extensions
Tải xuống các tệp mở rộng Slack-Rally Extensions dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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]
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Slack-Rally Extensions |
ID | alfkgcbidjlmbgbnhhabciookcoiomkf |
URL Chính Thức | https://chromewebstore.google.com/detail/slack-rally-extensions/alfkgcbidjlmbgbnhhabciookcoiomkf |
Mô tả | This extension hyperlinkifies your rally items on slack |
Kích Thước Tệp | 166 KB |
Số Lần Cài Đặt | 39 |
Phiên Bản Hiện Tại | 0.5.1 |
Cập Nhật Lần Cuối | 2016-02-01 |
Ngày Phát Hành | 2016-02-01 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Cheng |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/daily2432121/ChromeExtensionProjectTemplate1 |
URL Trang Trợ Giúp | https://github.com/daily2432121/ChromeExtensionProjectTemplate1 |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |