nKemono
Inspired by nCage. It replaces all of your images by Kemono Friends
nKemonoคืออะไร?
nKemono เป็นส่วนขยายของ Chrome ที่พัฒนาโดย CornGuo และคุณลักษณะหลักของมันคือ "Inspired by nCage. It replaces all of your images by Kemono Friends"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย nKemono
ดาวน์โหลดไฟล์ส่วนขยาย 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" } ] } |