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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
讓你的網頁充滿動物朋友。 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" } ] } |