Github Filter Extension

This extension add some feature to save and delete your custom filters in issues and Pull request page on Github.

Co je Github Filter Extension?

Github Filter Extension je rozšíření Chrome vyvinuté jeokrang, a jeho hlavní funkcí je „This extension add some feature to save and delete your custom filters in issues and Pull request page on Github.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Github Filter Extension

Stáhněte si soubory rozšíření Github Filter Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Feature:
- Save, Load and Delete custom filters in browser local storage
- Support Github Enterprise

Learn more about this: 
https://github.com/CoderK/github-filter-extension                    

Základní Informace o Rozšíření

Název Github Filter Extension Github Filter Extension
ID bbhcplmmihjdibppeeajmombokhcfakk
Oficiální URL https://chromewebstore.google.com/detail/github-filter-extension/bbhcplmmihjdibppeeajmombokhcfakk
Popis This extension add some feature to save and delete your custom filters in issues and Pull request page on Github.
Velikost souboru 27.14 KB
Počet instalací 11
Aktuální Verze 0.4.1
Poslední Aktualizace 2016-09-07
Datum Vydání 2016-09-06
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář jeokrang
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/CoderK/github-filter-extension
URL Stránky Nápovědy https://github.com/CoderK/github-filter-extension/issues
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Filter Extension",
    "version": "0.4.1",
    "author": "CoderK ",
    "description": "This extension add some feature to save and delete your custom filters in issues and Pull request page on Github.",
    "icons": {
        "128": ".\/resources\/img\/filter_off_128.png"
    },
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/dist\/app.min.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            ".\/dist\/background.min.js"
        ]
    },
    "browser_action": {
        "default_title": "Github Filter Extention",
        "default_icon": ".\/resources\/img\/filter_off_128.png"
    },
    "homepage_url": "https:\/\/github.com\/CoderK\/github-filter-extension"
}