GitHub Favorites

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

GitHub Favorites là gì?

GitHub Favorites là một tiện ích mở rộng Chrome được phát triển bởi hswolff, và tính năng chính của nó là "Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng GitHub Favorites

Tải xuống các tệp mở rộng GitHub Favorites dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GitHub Favorites GitHub Favorites
ID kfhdalekdpifhlndhcdnjgjoefiajefc
URL Chính Thức https://chrome.google.com/webstore/detail/github-favorites/kfhdalekdpifhlndhcdnjgjoefiajefc
Mô tả Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.
Kích Thước Tệp 593 KB
Số Lần Cài Đặt 201
Phiên Bản Hiện Tại 1.4
Cập Nhật Lần Cuối 2014-02-22
Ngày Phát Hành 2014-02-22
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển hswolff
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/hswolff/github-favorites
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}