Wildmonkey

Lightweight userscript manager

Wildmonkeyとは何ですか?

WildmonkeyはDualsub Studioによって開発されたChromeの拡張機能で、その主な機能は「Lightweight userscript manager」です。

拡張機能のスクリーンショット

screenshot
screenshot

Wildmonkey拡張機能のCRXファイルをダウンロード

Wildmonkey拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Features:

* Lightweight.
* Supports execute userscripts automatically and manually.
* Supports two types of userscripts, JavaScript and CSS.
* Supports all Web Extension browsers, including mobile browsers.                    

拡張機能の基本情報

名前 Wildmonkey Wildmonkey
ID jlffehhlfkdbdheffcaekpmkhfphmhpg
公式URL https://chromewebstore.google.com/detail/wildmonkey/jlffehhlfkdbdheffcaekpmkhfphmhpg
説明 Lightweight userscript manager
ファイルサイズ 75.36 KB
インストール数 477
現在のバージョン 0.16.1
最終更新日 2024-01-06
公開日 2022-01-01
評価 5.00/5 合計 1 レビュー
開発者 Dualsub Studio
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/muzuiget/monkey-support
ヘルプページのURL https://github.com/muzuiget/monkey-support/issues
対応言語 en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "minimum_chrome_version": "110",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "0.16.1",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        {
            "resources": [
                "injected.js"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": true
        }
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}