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 je Github Stars Manager?

Github Stars Manager je rozšíření Chrome vyvinuté Gabriel Godoy, a jeho hlavní funkcí je „This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Github Stars Manager

Stáhněte si soubory rozšíření Github Stars Manager 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í

                        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.                    

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

Název Github Stars Manager Github Stars Manager
ID epooeampfghdkampjnocabjniefmnkab
Oficiální URL https://chrome.google.com/webstore/detail/epooeampfghdkampjnocabjniefmnkab
Popis This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.
Velikost souboru 149 KB
Počet instalací 245
Aktuální Verze 1.9
Poslední Aktualizace 2018-05-23
Datum Vydání 2018-05-23
Hodnocení 3.83/5 Celkem 12 Hodnocení
Vývojář Gabriel Godoy
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/gabrielgodoy/github-stars-manager
URL Stránky Nápovědy https://github.com/gabrielgodoy/github-stars-manager/issues
Podporované Jazyky 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"
            ]
        }
    ]
}