Github Filter Extension

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

Co to jest Github Filter Extension?

Github Filter Extension to rozszerzenie Chrome opracowane przez jeokrang, a jego główną funkcją jest „This extension add some feature to save and delete your custom filters in issues and Pull request page on Github.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Github Filter Extension

Pobierz pliki rozszerzeń Github Filter Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Github Filter Extension Github Filter Extension
ID bbhcplmmihjdibppeeajmombokhcfakk
Oficjalny URL https://chromewebstore.google.com/detail/github-filter-extension/bbhcplmmihjdibppeeajmombokhcfakk
Opis This extension add some feature to save and delete your custom filters in issues and Pull request page on Github.
Rozmiar pliku 27.14 KB
Liczba instalacji 11
Aktualna Wersja 0.4.1
Ostatnia Aktualizacja 2016-09-07
Data Publikacji 2016-09-06
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper jeokrang
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/CoderK/github-filter-extension
Adres URL Strony Pomocy https://github.com/CoderK/github-filter-extension/issues
Obsługiwane Języki 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"
}