GitHub Remarks

a chrome extension that can give github repos your own remarks

GitHub Remarks là gì?

GitHub Remarks là một tiện ích mở rộng Chrome được phát triển bởi hanzichi, và tính năng chính của nó là "a chrome extension that can give github repos your own remarks".

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

screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng GitHub Remarks 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

                        a chrome extension that can give github repos your own remarks                    

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

Tên GitHub Remarks GitHub Remarks
ID pkepkgjchpahghcfdmdokoonapagblem
URL Chính Thức https://chromewebstore.google.com/detail/github-remarks/pkepkgjchpahghcfdmdokoonapagblem
Mô tả a chrome extension that can give github repos your own remarks
Kích Thước Tệp 178 KB
Số Lần Cài Đặt 45
Phiên Bản Hiện Tại 1.2.1
Cập Nhật Lần Cuối 2018-05-28
Ngày Phát Hành 2018-05-27
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển hanzichi
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/hanzichi/github-remarks
URL Trang Trợ Giúp https://github.com/hanzichi/github-remarks/issues
Ngôn Ngữ Được Hỗ Trợ zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Remarks",
    "manifest_version": 2,
    "version": "1.2.1",
    "description": "a chrome extension that can give github repos your own remarks",
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "browser_action": {
        "default_title": "",
        "default_icon": {
            "19": "icons\/icon_19.png",
            "38": "icons\/icon_38.png"
        }
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/*"
            ],
            "js": [
                "content-scripts\/repoDetail.js"
            ],
            "css": [],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "js": [
                "lib\/jquery.min.js",
                "lib\/list.min.js",
                "content-scripts\/stars.js"
            ],
            "css": [],
            "run_at": "document_end"
        }
    ]
}