nKemono
Inspired by nCage. It replaces all of your images by Kemono Friends
nKemono क्या है?
nKemono CornGuo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Inspired by nCage. It replaces all of your images by Kemono Friends"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में nKemono एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } ] } |