GitHub Favorites

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

Apa itu GitHub Favorites?

GitHub Favorites adalah ekstensi Chrome yang dikembangkan oleh hswolff, dan fitur utamanya adalah "Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi GitHub Favorites

Unduh file ekstensi GitHub Favorites dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama GitHub Favorites GitHub Favorites
ID kfhdalekdpifhlndhcdnjgjoefiajefc
URL Resmi https://chrome.google.com/webstore/detail/github-favorites/kfhdalekdpifhlndhcdnjgjoefiajefc
Deskripsi Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.
Ukuran File 593 KB
Jumlah Instalasi 201
Versi Saat Ini 1.4
Terakhir Diperbarui 2014-02-22
Tanggal Publikasi 2014-02-22
Penilaian 5.00/5 Total 2 Penilaian
Pengembang hswolff
Tipe Pembayaran free
Situs Ekstensi https://github.com/hswolff/github-favorites
Bahasa yang Didukung 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"
            ]
        }
    ]
}