GitHub Favorites

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

Qu'est-ce que GitHub Favorites ?

GitHub Favorites est une extension Chrome développée par hswolff, et sa fonction principale est "Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension GitHub Favorites

Téléchargez les fichiers d'extension GitHub Favorites au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom GitHub Favorites GitHub Favorites
ID kfhdalekdpifhlndhcdnjgjoefiajefc
URL Officiel https://chrome.google.com/webstore/detail/github-favorites/kfhdalekdpifhlndhcdnjgjoefiajefc
Description Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.
Taille du Fichier 593 KB
Nombre d'Installations 201
Version Actuelle 1.4
Dernière Mise à Jour 2014-02-22
Date de Publication 2014-02-22
Évaluation 5.00/5 Total 2 Évaluations
Développeur hswolff
Type de Paiement free
Site Web de l'Extension https://github.com/hswolff/github-favorites
Langues Prises en Charge 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"
            ]
        }
    ]
}