Github Stars Manager

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

Cos'è Github Stars Manager?

Github Stars Manager è un'estensione di Chrome sviluppata da Gabriel Godoy, e la sua funzione principale è "This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Github Stars Manager

Scarica i file di estensione Github Stars Manager in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Github Stars Manager Github Stars Manager
ID epooeampfghdkampjnocabjniefmnkab
URL Ufficiale https://chrome.google.com/webstore/detail/epooeampfghdkampjnocabjniefmnkab
Descrizione This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.
Dimensione del File 149 KB
Conteggio Installazioni 245
Versione Corrente 1.9
Ultimo Aggiornamento 2018-05-23
Data di Pubblicazione 2018-05-23
Valutazione 3.83/5 Totale 12 Valutazioni
Sviluppatore Gabriel Godoy
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/gabrielgodoy/github-stars-manager
URL della Pagina di Aiuto https://github.com/gabrielgodoy/github-stars-manager/issues
Lingue Supportate 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"
            ]
        }
    ]
}