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\/*\/*"
]
} | |