HTML Layout X-Ray
Displays the html page layout, frames, border, sections, tables etc.
HTML Layout X-Rayとは何ですか?
HTML Layout X-RayはArjunによって開発されたChromeの拡張機能で、その主な機能は「Displays the html page layout, frames, border, sections, tables etc.」です。
拡張機能のスクリーンショット
HTML Layout X-Ray拡張機能のCRXファイルをダウンロード
HTML Layout X-Ray拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Easily check how HTML Layout is rendered and debug the space border issues.
拡張機能の基本情報
名前 | HTML Layout X-Ray |
ID | galjejegpfplkacednnfipedcdfdpiak |
公式URL | https://chromewebstore.google.com/detail/html-layout-x-ray/galjejegpfplkacednnfipedcdfdpiak |
説明 | Displays the html page layout, frames, border, sections, tables etc. |
ファイルサイズ | 20.78 KB |
インストール数 | 35 |
現在のバージョン | 1.0 |
最終更新日 | 2022-07-02 |
公開日 | 2022-07-01 |
開発者 | Arjun |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "HTML Layout X-Ray", "description": "Displays the html page layout, frames, border, sections, tables etc.", "version": "1.0", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ] } |