Bitbucket Filters

Add custom filter links for issues to bitbucket projects

Qu'est-ce que Bitbucket Filters ?

Bitbucket Filters est une extension Chrome développée par Ilya Radchenko, et sa fonction principale est "Add custom filter links for issues to bitbucket projects".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Bitbucket Filters

Téléchargez les fichiers d'extension Bitbucket Filters au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Bitbucket Filters Bitbucket Filters
ID dbifmilkbhjgdgalenpladkndcfjdpbk
URL Officiel https://chromewebstore.google.com/detail/bitbucket-filters/dbifmilkbhjgdgalenpladkndcfjdpbk
Description Add custom filter links for issues to bitbucket projects
Taille du Fichier 15.61 KB
Nombre d'Installations 76
Version Actuelle 0.1.7
Dernière Mise à Jour 2014-12-18
Date de Publication 2014-12-18
Évaluation 5.00/5 Total 8 Évaluations
Développeur Ilya Radchenko
Type de Paiement free
Site Web de l'Extension https://github.com/knownasilya/Bitbucket-Issue-Filters
URL de la Page d'Aide https://github.com/knownasilya/Bitbucket-Issue-Filters/issues
Langues Prises en Charge 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\/*\/*"
    ]
}