ecsy-devtools

ECSY developer tool panel

ecsy-devtools란 무엇입니까?

ecsy-devtools은(는) Mozilla Mixed Reality에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "ECSY developer tool panel"입니다.

확장 프로그램 스크린샷

screenshot

ecsy-devtools 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Adds ECSY debugging tools to the browser developer tools.
You will get a new tab called "ECSY" as well as a toolbar icon that will highlight when ECSY is detected on the current tab.

For more info please visit: https://github.com/mozillareality/ecsy-devtools                    

확장 프로그램 기본 정보

이름 ecsy-devtools ecsy-devtools
ID cdmidpfffmlibnnbhkfbobpghgfmhdhk
공식 URL https://chromewebstore.google.com/detail/ecsy-devtools/cdmidpfffmlibnnbhkfbobpghgfmhdhk
설명 ECSY developer tool panel
파일 크기 798 KB
설치 횟수 119
현재 버전 0.1.4
최근 업데이트 2020-09-12
출시 날짜 2019-12-11
평점 5.00/5 총 1 개의 평점
개발자 Mozilla Mixed Reality
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ecsy-devtools",
    "description": "ECSY developer tool panel",
    "author": "Fernando Serrano",
    "homepage_url": "https:\/\/github.com\/fernandojsg\/ecsy-devtools",
    "version": "0.1.4",
    "icons": {
        "32": "assets\/icon_32_detected.png",
        "48": "assets\/icon_48_detected.png",
        "64": "assets\/icon_64_detected.png",
        "128": "assets\/icon_128_detected.png"
    },
    "browser_action": {
        "default_title": "ECSY",
        "default_icon": {
            "32": "assets\/icon_32_disabled.png",
            "48": "assets\/icon_48_disabled.png",
            "64": "assets\/icon_64_disabled.png",
            "128": "assets\/icon_128_disabled.png"
        },
        "default_popup": "src\/extension\/popups\/disabled.html"
    },
    "devtools_page": "src\/extension\/devtools.html",
    "background": {
        "page": "src\/extension\/background.html",
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/extension\/contentScript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "src\/content\/*.js",
        "src\/extension\/popups\/*.html",
        "src\/vendor\/*.js",
        "assets\/*.svg",
        "assets\/*.png",
        "dist\/*.svg"
    ],
    "content_security_policy": "style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-eval'; connect-src *; frame-src *; object-src 'self'",
    "permissions": [
        "storage",
        "tabs",
        "file:\/\/*\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}