GitHub Favorites

Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.

O que é GitHub Favorites?

GitHub Favorites é uma extensão do Chrome desenvolvida por hswolff, e sua principal característica é "Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão GitHub Favorites

Baixe arquivos de extensão GitHub Favorites 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 little extension for Google Chrome adds a Favorite button on GitHub repository pages right next to the Watch button.  

When you hit the Favorite button it adds that repo to the folder 'GitHub Favorites' in your Bookmarks.  

If you want to remove the bookmark just hit the Favorite button again!

Full info available on the GitHub repository!  https://github.com/hswolff/github-favorites                    

Informações Básicas da Extensão

Nome GitHub Favorites GitHub Favorites
ID kfhdalekdpifhlndhcdnjgjoefiajefc
URL Oficial https://chrome.google.com/webstore/detail/github-favorites/kfhdalekdpifhlndhcdnjgjoefiajefc
Descrição Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.
Tamanho do Arquivo 593 KB
Contagem de Instalações 201
Versão Atual 1.4
Última Atualização 2014-02-22
Data de Publicação 2014-02-22
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor hswolff
Tipo de Pagamento free
Site da Extensão https://github.com/hswolff/github-favorites
Idiomas Suportados en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Favorites",
    "version": "1.4",
    "description": "Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "script.js"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "bookmarks",
        "https:\/\/github.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/*"
            ],
            "exclude_globs": [
                "*.com\/blog*",
                "*.com\/explore*",
                "*.com\/settings*",
                "*.com\/inbox*",
                "*.com\/repositories*",
                "*.com\/popular*"
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}