withExEditor

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

什么是withExEditor?

withExEditor是由https://asamuzak.jp开发的Chrome扩展程序,该扩展的主要功能是“From the context menu (right click), you can "View source" "View selection" or "Edit text" with your favorite editor.”。

扩展截图

screenshot
screenshot
screenshot

下载withExEditor扩展crx文件

下载withExEditor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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 .                    

扩展基本信息

名称 withExEditor withExEditor
ID koghhpkkcndhhclklnnnhcpkkplfkgoi
官方URL https://chromewebstore.google.com/detail/withexeditor/koghhpkkcndhhclklnnnhcpkkplfkgoi
简介 From the context menu (right click), you can "View source" "View selection" or "Edit text" with your favorite editor.
文件大小 251 KB
安装次数 420
当前版本 10.5.7
更新时间 2024-01-24
上架时间 2020-07-01
评分 3.50/5 共2次评分
开发者 https://asamuzak.jp
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/asamuzaK/withExEditor
帮助页面URL https://github.com/asamuzaK/withExEditor/issues
支持的语言 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"
}