Chrome User Script Handler

User script manager with support for Greasemonkey functions

Chrome User Script Handlerคืออะไร?

Chrome User Script Handler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://stefanxo.com และคุณลักษณะหลักของมันคือ "User script manager with support for Greasemonkey functions"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chrome User Script Handler

ดาวน์โหลดไฟล์ส่วนขยาย Chrome User Script Handler ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        User script manager with support for Greasemonkey functions

Based on Blank Canvas Script Handler which is not supported any longer in newer Chrome versions.

This extension lets you customize web sites by running bits of JavaScript on pages. It's kind of an unofficial Greasemonkey for Chrome, and supports many of the GM_* functions used in most scripts.

Features:

    * Easily install scripts on userscripts.org or any other page
    * Quickly find page-related scripts on greasyfork
    * Shows installed scripts, sites they run on, and their basic features
    * Built-in script editor lets you easily create or modify scripts
    * Shows number and list of scripts running on current page
    * Supports most Greasemonkey functions

The original author started this project because he was not able to find a Greasemonkey substitute for Chrome at the time. He didn't like Tampermonkey, and made this extension instead.

This project is now open source. Check it out at github: 

https://github.com/stefanXO/Script-Handler

Let us know if you find any bugs or come across something that can improve the project.

Known Bugs - fixed soon(ish)

    * @resource only supports images at the moment
    * Does not support GM_registerMenuCommand yet
    * Very limited support for unsafeWindow due to Chrome restrictions

Donate to show your love: 
https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=67TZLSEGYQFFW

Planned Featured:

    * Auto script update features
    * Syntax highlighting in editors
    * Pressing enter in editor automatically inserts the correct number of tab indents
    * Option to have the script list and editor take up the full browser width
    * Add support for triggering for desktop notifications                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Chrome User Script Handler Chrome User Script Handler
ID dofpeochehjcckohddplnekbcndhcoid
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chrome-user-script-handle/dofpeochehjcckohddplnekbcndhcoid
คำอธิบาย User script manager with support for Greasemonkey functions
ขนาดไฟล์ 229 KB
จำนวนการติดตั้ง 5,203
เวอร์ชันปัจจุบัน 0.0.18
อัปเดตครั้งล่าสุด 2020-06-18
วันที่เผยแพร่ 2020-06-17
คะแนน 3.35/5 รวมทั้งหมด 17 คะแนน
ผู้พัฒนา https://stefanxo.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/stefanXO/Script-Handler
URL หน้านโยบายความเป็นส่วนตัว https://github.com/stefanXO/Tab-Manager-Plus/blob/master/PRIVACY.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome User Script Handler",
    "version": "0.0.18",
    "manifest_version": 2,
    "description": "User script manager with support for Greasemonkey functions",
    "icons": {
        "32": "images\/script32.png",
        "64": "images\/script64.png",
        "256": "images\/script256.png"
    },
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "includes\/jquery.js",
                "includes\/content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": {
            "32": "images\/script32.png",
            "64": "images\/script64.png",
            "256": "images\/script256.png"
        },
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "images\/*.png",
        "images\/*.gif"
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "",
        "storage",
        "unlimited_storage"
    ]
}