Tampermonkey Editors

Online editor support for Tampermonkey's userscripts

Tampermonkey Editorsคืออะไร?

Tampermonkey Editors เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jan Biniok และคุณลักษณะหลักของมันคือ "Online editor support for Tampermonkey's userscripts"

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

screenshot

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

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

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

                        This extension allows users of the Tampermonkey extension to edit their userscripts at vscode.dev
Simply click at the extension's icon in the menu bar.

Requirements:
At the moment Tampermonkey BETA 4.19.6176+ is required (the stable version will follow)
You can get the BETA version from here:

https://chrome.google.com/webstore/detail/gcalenpjmijncebpfijmoaglllgpjagf

What is working:
 * List scripts grouped by namespace within a folder containing the script, a storage file and required scripts
 * Editing userscripts, userscript storage and required scripts
 * Editor warns on resource modification in background

What is not working (aka TODO list):
 * File and folder search
 * Global content search
 * Creating new scripts
 * Deleting scripts
 * Filter by enabled state
 * Showing new scripts created in background
 * Configuration of the used folder structure
 * Tampermonkey ESLint configuration mapped to .eslintrc file                    

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

ชื่อ Tampermonkey Editors Tampermonkey Editors
ID lieodnapokbjkkdkhdljlllmgkmdokcm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tampermonkey-editors/lieodnapokbjkkdkhdljlllmgkmdokcm
คำอธิบาย Online editor support for Tampermonkey's userscripts
ขนาดไฟล์ 38.17 KB
จำนวนการติดตั้ง 14,491
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2022-12-03
วันที่เผยแพร่ 2022-12-02
คะแนน 4.91/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา Jan Biniok
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว http://tampermonkey.net/privacy.php
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "minimum_chrome_version": "102.0.0.0",
    "offline_enabled": true,
    "action": {
        "default_icon": {
            "16": "images\/icon.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png"
        },
        "default_title": "Tampermonkey Editors"
    },
    "icons": {
        "16": "images\/icon.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "name": "Tampermonkey Editors",
    "short_name": "Tampermonkey Editors",
    "version": "1.0.1",
    "description": "Online editor support for Tampermonkey's userscripts",
    "default_locale": "en",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs",
        "webNavigation",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/*.vscode.dev\/*"
    ]
}