Bitbucket Filters

Add custom filter links for issues to bitbucket projects

O que é Bitbucket Filters?

Bitbucket Filters é uma extensão do Chrome desenvolvida por Ilya Radchenko, e sua principal característica é "Add custom filter links for issues to bitbucket projects".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Bitbucket Filters

Baixe arquivos de extensão Bitbucket Filters no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Bitbucket Filters Bitbucket Filters
ID dbifmilkbhjgdgalenpladkndcfjdpbk
URL Oficial https://chromewebstore.google.com/detail/bitbucket-filters/dbifmilkbhjgdgalenpladkndcfjdpbk
Descrição Add custom filter links for issues to bitbucket projects
Tamanho do Arquivo 15.61 KB
Contagem de Instalações 76
Versão Atual 0.1.7
Última Atualização 2014-12-18
Data de Publicação 2014-12-18
Classificação 5.00/5 Total de 8 Avaliações
Desenvolvedor Ilya Radchenko
Tipo de Pagamento free
Site da Extensão https://github.com/knownasilya/Bitbucket-Issue-Filters
URL da Página de Ajuda https://github.com/knownasilya/Bitbucket-Issue-Filters/issues
Idiomas Suportados 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\/*\/*"
    ]
}