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"
            ]
        }
    ]
}