nKemono
Inspired by nCage. It replaces all of your images by Kemono Friends
Hvad er nKemono?
nKemono er en Chrome-udvidelse udviklet af CornGuo, og dens hovedfunktion er "Inspired by nCage. It replaces all of your images by Kemono Friends".
Udvidelsesskærmbilleder
Download nKemono-udvidelses-CRX-fil
Download nKemono-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
讓你的網頁充滿動物朋友。 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. :)
Grundlæggende oplysninger om udvidelsen
Navn | nKemono |
ID | pfeabhccnkpilbkjncnndoahffhjgkak |
Officiel URL | https://chromewebstore.google.com/detail/nkemono/pfeabhccnkpilbkjncnndoahffhjgkak |
Beskrivelse | Inspired by nCage. It replaces all of your images by Kemono Friends |
Filstørrelse | 16.39 KB |
Antal Installationer | 618 |
Nuværende Version | 4.2 |
Senest Opdateret | 2019-08-20 |
Udgivelsesdato | 2019-08-20 |
Bedømmelse | 4.86/5 Samlet 78 Bedømmelser |
Udvikler | CornGuo |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" } ] } |