Svelte REPL Meister

Adds Auto-save, Global Search, Scroll position saving and Code History per Tab

Svelte REPL Meisterとは何ですか?

Svelte REPL MeisterはDanny Engelmanによって開発されたChromeの拡張機能で、その主な機能は「Adds Auto-save, Global Search, Scroll position saving and Code History per Tab」です。

拡張機能のスクリーンショット

screenshot

Svelte REPL Meister拡張機能のCRXファイルをダウンロード

Svelte REPL Meister拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Svelte REPL Meister Svelte REPL Meister
ID nmncamfbjoeickkimpgfghdiklhfbikh
公式URL https://chromewebstore.google.com/detail/svelte-repl-meister/nmncamfbjoeickkimpgfghdiklhfbikh
説明 Adds Auto-save, Global Search, Scroll position saving and Code History per Tab
ファイルサイズ 33.03 KB
インストール数 279
現在のバージョン 1.3
最終更新日 2022-10-01
公開日 2020-01-13
開発者 Danny Engelman
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/Svelte-REPL-Meister/chrome-extension
ヘルプページのURL https://github.com/Svelte-REPL-Meister/chrome-extension
対応言語 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"
    ]
}