nKemono
Inspired by nCage. It replaces all of your images by Kemono Friends
Wat is nKemono?
nKemono is een Chrome-extensie ontwikkeld door CornGuo, en de belangrijkste functie is "Inspired by nCage. It replaces all of your images by Kemono Friends".
Extensie Screenshots
Download het CRX-bestand van de extensie nKemono
Download nKemono-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
讓你的網頁充滿動物朋友。 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. :)
Basisinformatie over de Extensie
Naam | nKemono |
ID | pfeabhccnkpilbkjncnndoahffhjgkak |
Officiële URL | https://chromewebstore.google.com/detail/nkemono/pfeabhccnkpilbkjncnndoahffhjgkak |
Beschrijving | Inspired by nCage. It replaces all of your images by Kemono Friends |
Bestandsgrootte | 16.39 KB |
Aantal Installaties | 618 |
Huidige Versie | 4.2 |
Laatst Bijgewerkt | 2019-08-20 |
Publicatiedatum | 2019-08-20 |
Beoordeling | 4.86/5 Totaal 78 Beoordelingen |
Ontwikkelaar | CornGuo |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } ] } |