Wildmonkey

Lightweight userscript manager

Wildmonkeyคืออะไร?

Wildmonkey เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dualsub Studio และคุณลักษณะหลักของมันคือ "Lightweight userscript manager"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Wildmonkey

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
            ]
        }
    ]
}