nKemono

Inspired by nCage. It replaces all of your images by Kemono Friends

Apa itu nKemono?

nKemono adalah ekstensi Chrome yang dikembangkan oleh CornGuo, dan fitur utamanya adalah "Inspired by nCage. It replaces all of your images by Kemono Friends".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi nKemono

Unduh file ekstensi nKemono 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

                        讓你的網頁充滿動物朋友。

Brought to you by https://fugu.cafe

Now source code is avaliable at: https://github.com/cornguo/nKemono

Special thanks to following contributors:
- https://github.com/tengattack
- https://github.com/Yukaii

PRs are welcomed. :)                    

Informasi Dasar Ekstensi

Nama nKemono nKemono
ID pfeabhccnkpilbkjncnndoahffhjgkak
URL Resmi https://chromewebstore.google.com/detail/nkemono/pfeabhccnkpilbkjncnndoahffhjgkak
Deskripsi Inspired by nCage. It replaces all of your images by Kemono Friends
Ukuran File 16.39 KB
Jumlah Instalasi 618
Versi Saat Ini 4.2
Terakhir Diperbarui 2019-08-20
Tanggal Publikasi 2019-08-20
Penilaian 4.86/5 Total 78 Penilaian
Pengembang CornGuo
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "nKemono",
    "description": "Inspired by nCage.  It replaces all of your images by Kemono Friends",
    "version": "4.2",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "kemono.js"
            ],
            "run_at": "document_end"
        }
    ]
}