ecsy-devtools
ECSY developer tool panel
Qu'est-ce que ecsy-devtools ?
ecsy-devtools est une extension Chrome développée par Mozilla Mixed Reality, et sa fonction principale est "ECSY developer tool panel".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ecsy-devtools
Téléchargez les fichiers d'extension ecsy-devtools au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | ecsy-devtools |
ID | cdmidpfffmlibnnbhkfbobpghgfmhdhk |
URL Officiel | https://chromewebstore.google.com/detail/ecsy-devtools/cdmidpfffmlibnnbhkfbobpghgfmhdhk |
Description | ECSY developer tool panel |
Taille du Fichier | 798 KB |
Nombre d'Installations | 119 |
Version Actuelle | 0.1.4 |
Dernière Mise à Jour | 2020-09-12 |
Date de Publication | 2019-12-11 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Mozilla Mixed Reality |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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:\/\/*\/*" ] } |