Tampermonkey Editors
Online editor support for Tampermonkey's userscripts
Co je Tampermonkey Editors?
Tampermonkey Editors je rozšíření Chrome vyvinuté Jan Biniok, a jeho hlavní funkcí je „Online editor support for Tampermonkey's userscripts“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Tampermonkey Editors
Stáhněte si soubory rozšíření Tampermonkey Editors ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Tampermonkey Editors |
ID | lieodnapokbjkkdkhdljlllmgkmdokcm |
Oficiální URL | https://chromewebstore.google.com/detail/tampermonkey-editors/lieodnapokbjkkdkhdljlllmgkmdokcm |
Popis | Online editor support for Tampermonkey's userscripts |
Velikost souboru | 38.17 KB |
Počet instalací | 14,491 |
Aktuální Verze | 1.0.1 |
Poslední Aktualizace | 2022-12-03 |
Datum Vydání | 2022-12-02 |
Hodnocení | 4.91/5 Celkem 11 Hodnocení |
Vývojář | Jan Biniok |
[email protected] | |
Typ Platby | free |
URL Stránky Zásad Ochrany Soukromí | http://tampermonkey.net/privacy.php |
Podporované Jazyky | 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\/*" ] } |