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"입니다.
확장 프로그램 스크린샷
Slack-Rally Extensions 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" } } |