Bitbucket Filters
Add custom filter links for issues to bitbucket projects
Bitbucket Filtersとは何ですか?
Bitbucket FiltersはIlya Radchenkoによって開発されたChromeの拡張機能で、その主な機能は「Add custom filter links for issues to bitbucket projects」です。
拡張機能のスクリーンショット
Bitbucket Filters拡張機能のCRXファイルをダウンロード
Bitbucket Filters拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Allows for creating custom filters for your repositories that persist across Chrome accounts.
To add a filter, go to Issues > Advanced Search, select your options, then press the "Save & Search" button.
To edit a filter, go to Issues > Advanced Search, select 'edit' from dropdown of one of the filters. Change your filter options, and press the "Save & Search" button. Select "OK" when the name comes up, and confirm overwrite.
To delete a filter, go to Issues > Advanced Search, select 'delete' from dropdown of one of the filters. Confirm that you want to delete by clicking "OK". 拡張機能の基本情報
| 名前 | |
| ID | dbifmilkbhjgdgalenpladkndcfjdpbk |
| 公式URL | https://chromewebstore.google.com/detail/bitbucket-filters/dbifmilkbhjgdgalenpladkndcfjdpbk |
| 説明 | Add custom filter links for issues to bitbucket projects |
| ファイルサイズ | 15.61 KB |
| インストール数 | 76 |
| 現在のバージョン | 0.1.7 |
| 最終更新日 | 2014-12-18 |
| 公開日 | 2014-12-18 |
| 評価 | 5.00/5 合計 8 レビュー |
| 開発者 | Ilya Radchenko |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/knownasilya/Bitbucket-Issue-Filters |
| ヘルプページのURL | https://github.com/knownasilya/Bitbucket-Issue-Filters/issues |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"version": "0.1.7",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"icons": {
"16": "images\/icon-16.png",
"128": "images\/icon-128.png"
},
"default_locale": "en",
"options_page": "options.html",
"background": {
"scripts": [
"scripts\/background.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/bitbucket.org\/*\/*",
"https:\/\/bitbucket.org\/*\/*"
],
"css": [
"styles\/main.css"
],
"js": [
"scripts\/contentscript.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"permissions": [
"storage",
"http:\/\/bitbucket.org\/*\/*",
"https:\/\/bitbucket.org\/*\/*"
]
} | |