GitHub Favorites

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

Co je GitHub Favorites?

GitHub Favorites je rozšíření Chrome vyvinuté hswolff, a jeho hlavní funkcí je „Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření GitHub Favorites

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

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

Název GitHub Favorites GitHub Favorites
ID kfhdalekdpifhlndhcdnjgjoefiajefc
Oficiální URL https://chrome.google.com/webstore/detail/github-favorites/kfhdalekdpifhlndhcdnjgjoefiajefc
Popis Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.
Velikost souboru 593 KB
Počet instalací 201
Aktuální Verze 1.4
Poslední Aktualizace 2014-02-22
Datum Vydání 2014-02-22
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář hswolff
Typ Platby free
Webové stránky Rozšíření https://github.com/hswolff/github-favorites
Podporované Jazyky 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"
            ]
        }
    ]
}