Stash PR Helper
Helps Stash users to fill in Pull Requests' descriptions and reviewers
Stash PR Helperとは何ですか?
Stash PR Helperはnebakrajによって開発されたChromeの拡張機能で、その主な機能は「Helps Stash users to fill in Pull Requests' descriptions and reviewers」です。
拡張機能のスクリーンショット
Stash PR Helper拡張機能のCRXファイルをダウンロード
Stash PR Helper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Stash PR Helper is a productivity tool which allows Stash users to create Pull Requests (PRs) easier. For now the app provides 2 options: PR description templates and PR reviewers groups. How to use. 1) Go to the settings page and add some items. 2) When creating a pull request put a cursor into the appropriate field (Description or Reviewers) 3) Push any keyboard arrow (up, down, left, right) to open a pop-up with a list of suggestions. 4) Select some suggestion and get the field auto-filled. For unpacked version check: https://github.com/konst8/stash_pr_helper/tree/master
拡張機能の基本情報
名前 | Stash PR Helper |
ID | egdpkgklhlhmckklngifpnjfcmgahpnk |
公式URL | https://chromewebstore.google.com/detail/stash-pr-helper/egdpkgklhlhmckklngifpnjfcmgahpnk |
説明 | Helps Stash users to fill in Pull Requests' descriptions and reviewers |
ファイルサイズ | 112 KB |
インストール数 | 102 |
現在のバージョン | 1.0.0.8 |
最終更新日 | 2018-02-20 |
公開日 | 2018-02-19 |
評価 | 3.67/5 合計 3 レビュー |
開発者 | nebakraj |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Stash PR Helper", "description": "Helps Stash users to fill in Pull Requests' descriptions and reviewers", "version": "1.0.0.8", "permissions": [ "activeTab", "storage" ], "icons": { "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": "icon.png", "default_title": "Fill in PR's reviewers" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*\/*pull-requests*", "https:\/\/*\/*compare\/commits?*", "https:\/\/*\/*compare\/diff?*" ], "js": [ "libs\/jquery-ui-1.12.1.custom\/external\/jquery\/jquery.js", "contentScript.js" ], "css": [ "content.css" ] } ], "web_accessible_resources": [ "contentEject.js" ], "options_ui": { "page": "options\/options.html", "chrome_style": true } } |