nKemono

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

Was ist nKemono?

nKemono ist eine Chrome-Erweiterung, die von CornGuo entwickelt wurde, und ihr Hauptmerkmal ist "Inspired by nCage. It replaces all of your images by Kemono Friends".

Erweiterungsscreenshots

screenshot

nKemono-Erweiterungs-CRX-Datei herunterladen

Laden Sie nKemono-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

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

Grundlegende Informationen zur Erweiterung

Name nKemono nKemono
ID pfeabhccnkpilbkjncnndoahffhjgkak
Offizielle URL https://chromewebstore.google.com/detail/nkemono/pfeabhccnkpilbkjncnndoahffhjgkak
Beschreibung Inspired by nCage. It replaces all of your images by Kemono Friends
Dateigröße 16.39 KB
Installationsanzahl 618
Aktuelle Version 4.2
Letztes Update 2019-08-20
Veröffentlichungsdatum 2019-08-20
Bewertung 4.86/5 Insgesamt 78 Bewertungen
Entwickler CornGuo
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}