GitHub Favorites

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

什麼是GitHub Favorites?

GitHub Favorites是由hswolff開發的Chrome擴展程式,該擴展的主要功能是“Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.”。

擴展截圖

screenshot

下載GitHub Favorites擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}