X-Ray Specs
Show the internals of a webpage
X-Ray Specsとは何ですか?
X-Ray Specsはhttp://red-robot.co.ukによって開発されたChromeの拡張機能で、その主な機能は「Show the internals of a webpage」です。
拡張機能のスクリーンショット
X-Ray Specs拡張機能のCRXファイルをダウンロード
X-Ray Specs拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Quickly show the internal layout of a website.
拡張機能の基本情報
名前 | |
ID | dibgfligccpcboljaaicckpdhjolpcma |
公式URL | https://chrome.google.com/webstore/detail/dibgfligccpcboljaaicckpdhjolpcma |
説明 | Show the internals of a webpage |
ファイルサイズ | 26.8 KB |
インストール数 | 36 |
現在のバージョン | 1.1 |
最終更新日 | 2016-06-07 |
公開日 | 2016-06-07 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | http://red-robot.co.uk |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "X-Ray Specs", "description": "Show the internals of a webpage", "version": "1.1", "content_scripts": [ { "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "js\/background.js" ] }, "permissions": [ "tabs" ], "browser_action": { "default_icon": "i\/icon.png" }, "icons": { "128": "i\/x-ray_128x128.png" }, "web_accessible_resources": [ "css\/debug.css" ] } |