nKemono

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

Cos'è nKemono?

nKemono è un'estensione di Chrome sviluppata da CornGuo, e la sua funzione principale è "Inspired by nCage. It replaces all of your images by Kemono Friends".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione nKemono

Scarica i file di estensione nKemono in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

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. :)                    

Informazioni di Base sull'Estensione

Nome nKemono nKemono
ID pfeabhccnkpilbkjncnndoahffhjgkak
URL Ufficiale https://chromewebstore.google.com/detail/nkemono/pfeabhccnkpilbkjncnndoahffhjgkak
Descrizione Inspired by nCage. It replaces all of your images by Kemono Friends
Dimensione del File 16.39 KB
Conteggio Installazioni 618
Versione Corrente 4.2
Ultimo Aggiornamento 2019-08-20
Data di Pubblicazione 2019-08-20
Valutazione 4.86/5 Totale 78 Valutazioni
Sviluppatore CornGuo
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}