ecsy-devtools
ECSY developer tool panel
Was ist ecsy-devtools?
ecsy-devtools ist eine Chrome-Erweiterung, die von Mozilla Mixed Reality entwickelt wurde, und ihr Hauptmerkmal ist "ECSY developer tool panel".
Erweiterungsscreenshots
ecsy-devtools-Erweiterungs-CRX-Datei herunterladen
Laden Sie ecsy-devtools-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | cdmidpfffmlibnnbhkfbobpghgfmhdhk |
| Offizielle URL | https://chromewebstore.google.com/detail/ecsy-devtools/cdmidpfffmlibnnbhkfbobpghgfmhdhk |
| Beschreibung | ECSY developer tool panel |
| Dateigröße | 798 KB |
| Installationsanzahl | 119 |
| Aktuelle Version | 0.1.4 |
| Letztes Update | 2020-09-12 |
| Veröffentlichungsdatum | 2019-12-11 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | Mozilla Mixed Reality |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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:\/\/*\/*"
]
} | |