withExEditor

From the context menu (right click), you can "View source" "View selection" or "Edit text" with your favorite editor.

Vad är withExEditor?

withExEditor är en Chrome-tillägg utvecklad av https://asamuzak.jp, och dess huvudfunktion är "From the context menu (right click), you can "View source" "View selection" or "Edit text" with your favorite editor.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner withExEditor-förlängningens CRX-fil

Ladda ner withExEditor-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

                        From the context menu (right click), you can "View source" "View selection" or "Edit text" with your favorite editor.
Enabled in (X)HTML, JavaScript, CSS, MathML, SVG, XML, etc.

To use withExEditor, you also need to prepare a host which executes your editor.
Please download the host for withExEditor from asamuzaK/withExEditorHost .                    

Grundläggande Information om Tillägg

Namn withExEditor withExEditor
ID koghhpkkcndhhclklnnnhcpkkplfkgoi
Officiell webbadress https://chromewebstore.google.com/detail/withexeditor/koghhpkkcndhhclklnnnhcpkkplfkgoi
Beskrivning From the context menu (right click), you can "View source" "View selection" or "Edit text" with your favorite editor.
Filstorlek 251 KB
Antal Installationer 420
Aktuell Version 10.5.7
Senast Uppdaterad 2024-01-24
Publiceringsdatum 2020-07-01
Betyg 3.50/5 Totalt 2 Betyg
Utvecklare https://asamuzak.jp
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/asamuzaK/withExEditor
Hjälpsida URL https://github.com/asamuzaK/withExEditor/issues
Stödda Språk en,en-GB,fr,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "page": "html\/background.html",
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "img\/icon-outline-16.png",
            "32": "img\/icon-outline-32.png"
        },
        "default_title": "__MSG_extensionName__"
    },
    "commands": {
        "execEditor": {
            "description": "__MSG_commandExecEditor__",
            "suggested_key": {
                "default": "Ctrl+Shift+U"
            }
        },
        "openOptionsPage": {
            "description": "__MSG_commandOpenOptions__",
            "suggested_key": {
                "default": "Alt+Shift+U"
            }
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "lib\/mozilla\/browser-polyfill.min.js",
                "js\/content.js"
            ],
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "default_locale": "en",
    "description": "__MSG_extensionDescription__",
    "homepage_url": "https:\/\/github.com\/asamuzaK\/withExEditor",
    "icons": {
        "16": "img\/icon-outline-16.png",
        "32": "img\/icon-outline-32.png",
        "64": "img\/icon-color.png",
        "128": "img\/icon-color-128.png"
    },
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "optional_permissions": [
        "notifications"
    ],
    "options_ui": {
        "open_in_tab": true,
        "page": "html\/options.html"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "nativeMessaging",
        "storage",
        "tabs"
    ],
    "short_name": "__MSG_extensionName__",
    "version": "10.5.7"
}