Svelte REPL Meister
Adds Auto-save, Global Search, Scroll position saving and Code History per Tab
Vad är Svelte REPL Meister?
Svelte REPL Meister är en Chrome-tillägg utvecklad av Danny Engelman, och dess huvudfunktion är "Adds Auto-save, Global Search, Scroll position saving and Code History per Tab".
Tilläggsskärmbilder
Ladda ner Svelte REPL Meister-förlängningens CRX-fil
Ladda ner Svelte REPL Meister-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | nmncamfbjoeickkimpgfghdiklhfbikh |
| Officiell webbadress | https://chromewebstore.google.com/detail/svelte-repl-meister/nmncamfbjoeickkimpgfghdiklhfbikh |
| Beskrivning | Adds Auto-save, Global Search, Scroll position saving and Code History per Tab |
| Filstorlek | 33.03 KB |
| Antal Installationer | 279 |
| Aktuell Version | 1.3 |
| Senast Uppdaterad | 2022-10-01 |
| Publiceringsdatum | 2020-01-13 |
| Utvecklare | Danny Engelman |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/Svelte-REPL-Meister/chrome-extension |
| Hjälpsida URL | https://github.com/Svelte-REPL-Meister/chrome-extension |
| Stödda Språk | 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"
]
} | |