GitHub Favorites

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

Wat is GitHub Favorites?

GitHub Favorites is een Chrome-extensie ontwikkeld door hswolff, en de belangrijkste functie is "Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie GitHub Favorites

Download GitHub Favorites-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam GitHub Favorites GitHub Favorites
ID kfhdalekdpifhlndhcdnjgjoefiajefc
Officiële URL https://chrome.google.com/webstore/detail/github-favorites/kfhdalekdpifhlndhcdnjgjoefiajefc
Beschrijving Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.
Bestandsgrootte 593 KB
Aantal Installaties 201
Huidige Versie 1.4
Laatst Bijgewerkt 2014-02-22
Publicatiedatum 2014-02-22
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar hswolff
Betalingswijze free
Extensiewebsite https://github.com/hswolff/github-favorites
Ondersteunde Talen 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"
            ]
        }
    ]
}