nKemono
Inspired by nCage. It replaces all of your images by Kemono Friends
What is nKemono?
nKemono is a Chrome extension developed by CornGuo, and its main feature is "Inspired by nCage. It replaces all of your images by Kemono Friends".
Extension Screenshots
Download nKemono Extension CRX File
Download nKemono extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
讓你的網頁充滿動物朋友。
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. :) Extension Basic Information
| Name | |
| ID | pfeabhccnkpilbkjncnndoahffhjgkak |
| Official URL | https://chromewebstore.google.com/detail/nkemono/pfeabhccnkpilbkjncnndoahffhjgkak |
| Description | Inspired by nCage. It replaces all of your images by Kemono Friends |
| File Size | 16.39 KB |
| Installation Count | 618 |
| Current Version | 4.2 |
| Last Updated | 2019-08-20 |
| Publish Date | 2019-08-20 |
| Rating | 4.86/5 Total 78 Ratings |
| Developer | CornGuo |
| [email protected] | |
| Payment Type | free |
| Supported Languages | 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"
}
]
} | |