Bitbucket Filters

Add custom filter links for issues to bitbucket projects

Cos'è Bitbucket Filters?

Bitbucket Filters è un'estensione di Chrome sviluppata da Ilya Radchenko, e la sua funzione principale è "Add custom filter links for issues to bitbucket projects".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Bitbucket Filters

Scarica i file di estensione Bitbucket Filters in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Bitbucket Filters Bitbucket Filters
ID dbifmilkbhjgdgalenpladkndcfjdpbk
URL Ufficiale https://chromewebstore.google.com/detail/bitbucket-filters/dbifmilkbhjgdgalenpladkndcfjdpbk
Descrizione Add custom filter links for issues to bitbucket projects
Dimensione del File 15.61 KB
Conteggio Installazioni 76
Versione Corrente 0.1.7
Ultimo Aggiornamento 2014-12-18
Data di Pubblicazione 2014-12-18
Valutazione 5.00/5 Totale 8 Valutazioni
Sviluppatore Ilya Radchenko
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/knownasilya/Bitbucket-Issue-Filters
URL della Pagina di Aiuto https://github.com/knownasilya/Bitbucket-Issue-Filters/issues
Lingue Supportate 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\/*\/*"
    ]
}