GitHub Favorites

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

Τι είναι το GitHub Favorites;

Το GitHub Favorites είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον hswolff, και η κύρια λειτουργία του είναι "Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης GitHub Favorites

Λήψη αρχείων επέκτασης GitHub Favorites σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα GitHub Favorites GitHub Favorites
ID kfhdalekdpifhlndhcdnjgjoefiajefc
Επίσημο URL https://chrome.google.com/webstore/detail/github-favorites/kfhdalekdpifhlndhcdnjgjoefiajefc
Περιγραφή Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.
Μέγεθος Αρχείου 593 KB
Αριθμός Εγκαταστάσεων 201
Τρέχουσα Έκδοση 1.4
Τελευταία Ενημέρωση 2014-02-22
Ημερομηνία Δημοσίευσης 2014-02-22
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής hswolff
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/hswolff/github-favorites
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}