nKemono
Inspired by nCage. It replaces all of your images by Kemono Friends
nKemono란 무엇입니까?
nKemono은(는) CornGuo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Inspired by nCage. It replaces all of your images by Kemono Friends"입니다.
확장 프로그램 스크린샷
nKemono 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } ] } |