Slack-Rally Extensions
This extension hyperlinkifies your rally items on slack
Co to jest Slack-Rally Extensions?
Slack-Rally Extensions to rozszerzenie Chrome opracowane przez Cheng, a jego główną funkcją jest „This extension hyperlinkifies your rally items on slack”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Slack-Rally Extensions
Pobierz pliki rozszerzeń Slack-Rally Extensions w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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]
Podstawowe informacje o rozszerzeniu
Nazwa | Slack-Rally Extensions |
ID | alfkgcbidjlmbgbnhhabciookcoiomkf |
Oficjalny URL | https://chromewebstore.google.com/detail/slack-rally-extensions/alfkgcbidjlmbgbnhhabciookcoiomkf |
Opis | This extension hyperlinkifies your rally items on slack |
Rozmiar pliku | 166 KB |
Liczba instalacji | 39 |
Aktualna Wersja | 0.5.1 |
Ostatnia Aktualizacja | 2016-02-01 |
Data Publikacji | 2016-02-01 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | Cheng |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/daily2432121/ChromeExtensionProjectTemplate1 |
Adres URL Strony Pomocy | https://github.com/daily2432121/ChromeExtensionProjectTemplate1 |
Obsługiwane Języki | 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" } } |