nKemono
Inspired by nCage. It replaces all of your images by Kemono Friends
Vad är nKemono?
nKemono är en Chrome-tillägg utvecklad av CornGuo, och dess huvudfunktion är "Inspired by nCage. It replaces all of your images by Kemono Friends".
Tilläggsskärmbilder
Ladda ner nKemono-förlängningens CRX-fil
Ladda ner nKemono-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
讓你的網頁充滿動物朋友。
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. :) Grundläggande Information om Tillägg
| Namn | |
| ID | pfeabhccnkpilbkjncnndoahffhjgkak |
| Officiell webbadress | https://chromewebstore.google.com/detail/nkemono/pfeabhccnkpilbkjncnndoahffhjgkak |
| Beskrivning | Inspired by nCage. It replaces all of your images by Kemono Friends |
| Filstorlek | 16.39 KB |
| Antal Installationer | 618 |
| Aktuell Version | 4.2 |
| Senast Uppdaterad | 2019-08-20 |
| Publiceringsdatum | 2019-08-20 |
| Betyg | 4.86/5 Totalt 78 Betyg |
| Utvecklare | CornGuo |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
}
]
} | |