Evergage Launcher

The extension provides support for launching the Evergage Visual Editor on any domain.

Evergage Launcher란 무엇입니까?

Evergage Launcher은(는) Evergage에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The extension provides support for launching the Evergage Visual Editor on any domain."입니다.

확장 프로그램 스크린샷

screenshot

Evergage Launcher 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension provides additional support for launching the Evergage visual editor on any domain.                    

확장 프로그램 기본 정보

이름 Evergage Launcher Evergage Launcher
ID kdkjdfmjdcanklbkphhfdpieoohcheoc
공식 URL https://chromewebstore.google.com/detail/evergage-launcher/kdkjdfmjdcanklbkphhfdpieoohcheoc
설명 The extension provides support for launching the Evergage Visual Editor on any domain.
파일 크기 3.86 MB
설치 횟수 5,404
현재 버전 3.0.10
최근 업데이트 2021-08-05
출시 날짜 2020-06-25
평점 3.40/5 총 5 개의 평점
개발자 Evergage
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://www.salesforce.com/privacy/overview
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Evergage Launcher",
    "manifest_version": 2,
    "version": "3.0.10",
    "description": "The extension provides support for launching the Evergage Visual Editor on any domain.",
    "content_security_policy": "script-src 'self' https:\/\/cdn.evergage.com 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "contextMenus",
        "webRequest",
        "webRequestBlocking",
        "clipboardWrite",
        "webNavigation",
        "privacy"
    ],
    "icons": {
        "16": "static\/[email protected]",
        "48": "static\/[email protected]",
        "128": "static\/[email protected]"
    },
    "background": {
        "scripts": [
            "background.js",
            "hot-reload.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "",
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "pageContext.js",
        "debugger.html",
        "static\/*.svg"
    ],
    "browser_action": {
        "default_icon": {
            "19": "static\/[email protected]",
            "38": "static\/[email protected]",
            "128": "static\/[email protected]"
        },
        "default_popup": "popup.html"
    }
}