Jira Followers Groups
Allows to create Jira followers groups and easily paste them in comments and description fields
什麼是Jira Followers Groups?
Jira Followers Groups是由nebakraj開發的Chrome擴展程式,該擴展的主要功能是“Allows to create Jira followers groups and easily paste them in comments and description fields”。
擴展截圖
下載Jira Followers Groups擴展crx文件
下載Jira Followers Groups擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
How to use: 1) Open settings page by clicking the app's icon. 2) Create some user groups. 3) Create Jira ticket or edit an existing one. 4) Put cursor into the editable area (description field or comment body) and type dollar sign - $. Make sure there is whitespace before it or start a new line. 5) The list of suggestions should appear. 6) Click on user group you want to paste or use keyboard arrows. For unpacked version of the app check https://github.com/konst8/jira_followers_groups
擴展基本資訊
名稱 | Jira Followers Groups |
ID | fdojmiggmjfnphbclmpfejfmdfddcdmg |
官方網址 | https://chromewebstore.google.com/detail/jira-followers-groups/fdojmiggmjfnphbclmpfejfmdfddcdmg |
簡介 | Allows to create Jira followers groups and easily paste them in comments and description fields |
檔案大小 | 114 KB |
安裝次數 | 28 |
目前版本 | 1.0.0.3 |
更新時間 | 2018-01-25 |
上架時間 | 2018-01-25 |
評分 | 5.00/5 共 1 次評分 |
開發者 | nebakraj |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Jira Followers Groups", "description": "Allows to create Jira followers groups and easily paste them in comments and description fields", "version": "1.0.0.3", "permissions": [ "activeTab", "storage" ], "icons": { "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": "icon.png", "default_title": "Edit Jira Followers Groups" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/browse\/*", "*:\/\/*\/secure\/*", "*:\/\/*\/jira\/browse\/*", "*:\/\/*\/jira\/secure\/*" ], "js": [ "libs\/jquery-ui-1.12.1.custom\/external\/jquery\/jquery.js", "contentScript.js" ], "css": [ "content.css" ] } ], "options_ui": { "page": "options\/options.html", "chrome_style": true } } |