GitHub Favorites

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

Was ist GitHub Favorites?

GitHub Favorites ist eine Chrome-Erweiterung, die von hswolff entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.".

Erweiterungsscreenshots

screenshot

GitHub Favorites-Erweiterungs-CRX-Datei herunterladen

Laden Sie GitHub Favorites-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name GitHub Favorites GitHub Favorites
ID kfhdalekdpifhlndhcdnjgjoefiajefc
Offizielle URL https://chrome.google.com/webstore/detail/github-favorites/kfhdalekdpifhlndhcdnjgjoefiajefc
Beschreibung Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.
Dateigröße 593 KB
Installationsanzahl 201
Aktuelle Version 1.4
Letztes Update 2014-02-22
Veröffentlichungsdatum 2014-02-22
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler hswolff
Zahlungsart free
Erweiterungswebsite https://github.com/hswolff/github-favorites
Unterstützte Sprachen 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"
            ]
        }
    ]
}