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
公式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
Eメール [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"
        }
    ]
}