Github Stars Manager

This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.

Co to jest Github Stars Manager?

Github Stars Manager to rozszerzenie Chrome opracowane przez Gabriel Godoy, a jego główną funkcją jest „This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Github Stars Manager

Pobierz pliki rozszerzeń Github Stars Manager 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

                        This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.

It uses storage.sync, so the tags you create will be synced to all your computers, and visible on Github.                    

Podstawowe informacje o rozszerzeniu

Nazwa Github Stars Manager Github Stars Manager
ID epooeampfghdkampjnocabjniefmnkab
Oficjalny URL https://chrome.google.com/webstore/detail/epooeampfghdkampjnocabjniefmnkab
Opis This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.
Rozmiar pliku 149 KB
Liczba instalacji 245
Aktualna Wersja 1.9
Ostatnia Aktualizacja 2018-05-23
Data Publikacji 2018-05-23
Ocena 3.83/5 Łącznie 12 Oceny
Deweloper Gabriel Godoy
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/gabrielgodoy/github-stars-manager
Adres URL Strony Pomocy https://github.com/gabrielgodoy/github-stars-manager/issues
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Stars Manager",
    "description": "This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.",
    "version": "1.9",
    "browser_action": {
        "default_icon": "src\/assets\/images\/icons\/icon.png"
    },
    "icons": {
        "16": "src\/assets\/images\/icons\/icon16.png",
        "48": "src\/assets\/images\/icons\/icon48.png",
        "128": "src\/assets\/images\/icons\/icon128.png"
    },
    "permissions": [
        "contextMenus",
        "bookmarks",
        "tabs",
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "dist\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "js": [
                "dist\/content_script.js"
            ],
            "css": [
                "dist\/main.css"
            ]
        }
    ]
}