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”。

擴展截圖

screenshot

下載nKemono擴展crx文件

下載nKemono擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

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 nKemono
ID pfeabhccnkpilbkjncnndoahffhjgkak
官方網址 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"
        }
    ]
}