nKemono

Inspired by nCage. It replaces all of your images by Kemono Friends

nKemono là gì?

nKemono là một tiện ích mở rộng Chrome được phát triển bởi CornGuo, và tính năng chính của nó là "Inspired by nCage. It replaces all of your images by Kemono Friends".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng nKemono

Tải xuống các tệp mở rộng nKemono dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        讓你的網頁充滿動物朋友。

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. :)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên nKemono nKemono
ID pfeabhccnkpilbkjncnndoahffhjgkak
URL Chính Thức https://chromewebstore.google.com/detail/nkemono/pfeabhccnkpilbkjncnndoahffhjgkak
Mô tả Inspired by nCage. It replaces all of your images by Kemono Friends
Kích Thước Tệp 16.39 KB
Số Lần Cài Đặt 618
Phiên Bản Hiện Tại 4.2
Cập Nhật Lần Cuối 2019-08-20
Ngày Phát Hành 2019-08-20
Đánh Giá 4.86/5 Tổng số 78 Đánh Giá
Nhà Phát Triển CornGuo
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}