Tampermonkey Editors

Online editor support for Tampermonkey's userscripts

什麼是Tampermonkey Editors?

Tampermonkey Editors是由Jan Biniok開發的Chrome擴展程式,該擴展的主要功能是“Online editor support for Tampermonkey's userscripts”。

擴展截圖

screenshot

下載Tampermonkey Editors擴展crx文件

下載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
官方網址 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\/*"
    ]
}