nKemono
Inspired by nCage. It replaces all of your images by Kemono Friends
什么是nKemono?
nKemono是由CornGuo开发的Chrome扩展程序,该扩展的主要功能是“Inspired by nCage. It replaces all of your images by Kemono Friends”。
扩展截图
下载nKemono扩展crx文件
下载nKemono扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
讓你的網頁充滿動物朋友。 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. :)
扩展基本信息
名称 | nKemono |
ID | pfeabhccnkpilbkjncnndoahffhjgkak |
官方URL | https://chromewebstore.google.com/detail/nkemono/pfeabhccnkpilbkjncnndoahffhjgkak |
简介 | Inspired by nCage. It replaces all of your images by Kemono Friends |
文件大小 | 16.39 KB |
安装次数 | 618 |
当前版本 | 4.2 |
更新时间 | 2019-08-20 |
上架时间 | 2019-08-20 |
评分 | 4.86/5 共78次评分 |
开发者 | CornGuo |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" } ] } |