ecsy-devtools

ECSY developer tool panel

What is ecsy-devtools?

ecsy-devtools is a Chrome extension developed by Mozilla Mixed Reality, and its main feature is "ECSY developer tool panel".

Extension Screenshots

screenshot

Download ecsy-devtools Extension CRX File

Download ecsy-devtools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name ecsy-devtools ecsy-devtools
ID cdmidpfffmlibnnbhkfbobpghgfmhdhk
Official URL https://chromewebstore.google.com/detail/ecsy-devtools/cdmidpfffmlibnnbhkfbobpghgfmhdhk
Description ECSY developer tool panel
File Size 798 KB
Installation Count 119
Current Version 0.1.4
Last Updated 2020-09-12
Publish Date 2019-12-11
Rating 5.00/5 Total 1 Ratings
Developer Mozilla Mixed Reality
Email [email protected]
Payment Type free
Supported Languages 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:\/\/*\/*"
    ]
}