GitHub Remarks

a chrome extension that can give github repos your own remarks

Apa itu GitHub Remarks?

GitHub Remarks adalah ekstensi Chrome yang dikembangkan oleh hanzichi, dan fitur utamanya adalah "a chrome extension that can give github repos your own remarks".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi GitHub Remarks

Unduh file ekstensi GitHub Remarks 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

                        a chrome extension that can give github repos your own remarks                    

Informasi Dasar Ekstensi

Nama GitHub Remarks GitHub Remarks
ID pkepkgjchpahghcfdmdokoonapagblem
URL Resmi https://chromewebstore.google.com/detail/github-remarks/pkepkgjchpahghcfdmdokoonapagblem
Deskripsi a chrome extension that can give github repos your own remarks
Ukuran File 178 KB
Jumlah Instalasi 45
Versi Saat Ini 1.2.1
Terakhir Diperbarui 2018-05-28
Tanggal Publikasi 2018-05-27
Penilaian 5.00/5 Total 1 Penilaian
Pengembang hanzichi
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/hanzichi/github-remarks
URL Halaman Bantuan https://github.com/hanzichi/github-remarks/issues
Bahasa yang Didukung 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"
        }
    ]
}