Bitbucket Filters

Add custom filter links for issues to bitbucket projects

What is Bitbucket Filters?

Bitbucket Filters is a Chrome extension developed by Ilya Radchenko, and its main feature is "Add custom filter links for issues to bitbucket projects".

Extension Screenshots

screenshot
screenshot

Download Bitbucket Filters Extension CRX File

Download Bitbucket Filters extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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".                    

Extension Basic Information

Name Bitbucket Filters Bitbucket Filters
ID dbifmilkbhjgdgalenpladkndcfjdpbk
Official URL https://chromewebstore.google.com/detail/bitbucket-filters/dbifmilkbhjgdgalenpladkndcfjdpbk
Description Add custom filter links for issues to bitbucket projects
File Size 15.61 KB
Installation Count 76
Current Version 0.1.7
Last Updated 2014-12-18
Publish Date 2014-12-18
Rating 5.00/5 Total 8 Ratings
Developer Ilya Radchenko
Payment Type free
Extension Website https://github.com/knownasilya/Bitbucket-Issue-Filters
Help Page URL https://github.com/knownasilya/Bitbucket-Issue-Filters/issues
Supported Languages 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\/*\/*"
    ]
}