GitHub Favorites

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

¿Qué es GitHub Favorites?

GitHub Favorites es una extensión de Chrome desarrollada por hswolff, y su función principal es "Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión GitHub Favorites

Descarga archivos de extensión GitHub Favorites en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre GitHub Favorites GitHub Favorites
ID kfhdalekdpifhlndhcdnjgjoefiajefc
URL Oficial https://chrome.google.com/webstore/detail/github-favorites/kfhdalekdpifhlndhcdnjgjoefiajefc
Descripción Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.
Tamaño del Archivo 593 KB
Cantidad de Instalaciones 201
Versión Actual 1.4
Última Actualización 2014-02-22
Fecha de Publicación 2014-02-22
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador hswolff
Tipo de Pago free
Sitio Web de la Extensión https://github.com/hswolff/github-favorites
Idiomas Soportados 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"
            ]
        }
    ]
}