Svelte REPL Meister
Adds Auto-save, Global Search, Scroll position saving and Code History per Tab
What is Svelte REPL Meister?
Svelte REPL Meister is a Chrome extension developed by Danny Engelman, and its main feature is "Adds Auto-save, Global Search, Scroll position saving and Code History per Tab".
Extension Screenshots
Download Svelte REPL Meister Extension CRX File
Download Svelte REPL Meister extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
The Svelte REPL Meister enhances the Svelte REPL with Auto-Save, Code Search, Scroll position saving and code History per Tab * Auto Save - All open Tabs are saved on every Tab switch * Code Search - selected Tabs content is search, search result output to F12 console * Scroll position - is saved and restored on each Tab switch * Code History - Tab Code history can be saved (per Browser session) // VERSION HISTORY // dec 23 2019 - v1.0 - initial release // jan 3 2020 - v1.1 - fixed duplicate handlers/code search bug, added optional trace // jan 13 2020 - v1.2 - fixed new tab error // added double click = search selected word // added set trace mode with click on Title // added save last selected Tab in localStorage // sep 30 2022 - v1.3 - removed "storage" permission because Google said so
Extension Basic Information
Name | Svelte REPL Meister |
ID | nmncamfbjoeickkimpgfghdiklhfbikh |
Official URL | https://chromewebstore.google.com/detail/svelte-repl-meister/nmncamfbjoeickkimpgfghdiklhfbikh |
Description | Adds Auto-save, Global Search, Scroll position saving and Code History per Tab |
File Size | 33.03 KB |
Installation Count | 279 |
Current Version | 1.3 |
Last Updated | 2022-10-01 |
Publish Date | 2020-01-13 |
Developer | Danny Engelman |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/Svelte-REPL-Meister/chrome-extension |
Help Page URL | https://github.com/Svelte-REPL-Meister/chrome-extension |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Svelte REPL Meister", "description": "Adds Auto-save, Global Search, Scroll position saving and Code History per Tab", "version": "1.3", "icons": { "16": "16.png", "48": "48.png", "128": "128.png" }, "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/svelte.dev\/repl\/*" ], "css": [ "svelteREPLmeister.css" ], "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ "svelteREPLmeister.js", "svelteREPLmeister.css" ], "permissions": [ "tabs" ] } |