ecsy-devtools
ECSY developer tool panel
ecsy-devtoolsとは何ですか?
ecsy-devtoolsはMozilla Mixed Realityによって開発されたChromeの拡張機能で、その主な機能は「ECSY developer tool panel」です。
拡張機能のスクリーンショット
ecsy-devtools拡張機能のCRXファイルをダウンロード
ecsy-devtools拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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:\/\/*\/*"
]
} | |