GitHub Favorites

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

Co to jest GitHub Favorites?

GitHub Favorites to rozszerzenie Chrome opracowane przez hswolff, a jego główną funkcją jest „Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia GitHub Favorites

Pobierz pliki rozszerzeń GitHub Favorites w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa GitHub Favorites GitHub Favorites
ID kfhdalekdpifhlndhcdnjgjoefiajefc
Oficjalny URL https://chrome.google.com/webstore/detail/github-favorites/kfhdalekdpifhlndhcdnjgjoefiajefc
Opis Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.
Rozmiar pliku 593 KB
Liczba instalacji 201
Aktualna Wersja 1.4
Ostatnia Aktualizacja 2014-02-22
Data Publikacji 2014-02-22
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper hswolff
Typ Płatności free
Strona Rozszerzenia https://github.com/hswolff/github-favorites
Obsługiwane Języki 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"
            ]
        }
    ]
}