Github Stars Manager

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

O que é Github Stars Manager?

Github Stars Manager é uma extensão do Chrome desenvolvida por Gabriel Godoy, e sua principal característica é "This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Github Stars Manager

Baixe arquivos de extensão Github Stars Manager no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Github Stars Manager Github Stars Manager
ID epooeampfghdkampjnocabjniefmnkab
URL Oficial https://chrome.google.com/webstore/detail/epooeampfghdkampjnocabjniefmnkab
Descrição This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.
Tamanho do Arquivo 149 KB
Contagem de Instalações 245
Versão Atual 1.9
Última Atualização 2018-05-23
Data de Publicação 2018-05-23
Classificação 3.83/5 Total de 12 Avaliações
Desenvolvedor Gabriel Godoy
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/gabrielgodoy/github-stars-manager
URL da Página de Ajuda https://github.com/gabrielgodoy/github-stars-manager/issues
Idiomas Suportados 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"
            ]
        }
    ]
}