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 |
公式URL | 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 |
Eメール | [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 } } |