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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
}