DOM Outliner
Outline elements within a webpage. Activate the extension and watch as DOM elements are highlighted with different colors.
什么是DOM Outliner?
DOM Outliner是由noeclement开发的Chrome扩展程序,该扩展的主要功能是“Outline elements within a webpage. Activate the extension and watch as DOM elements are highlighted with different colors.”。
扩展截图
下载DOM Outliner扩展crx文件
下载DOM Outliner扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Acting as an X-ray for your page, this extension allows you to visually outline and distinguish different elements within a webpage's Document Object Model (DOM). With this extension, you can easily identify and analyze the structure of a webpage, making it easier to debug and optimize your web projects. Simply activate the extension and watch as the DOM elements are highlighted with different colors, allowing you to quickly and easily identify and differentiate between them.
扩展基本信息
名称 | DOM Outliner |
ID | bagbmhiblmhlllddcpdalmdohgaknibd |
官方URL | https://chromewebstore.google.com/detail/dom-outliner/bagbmhiblmhlllddcpdalmdohgaknibd |
简介 | Outline elements within a webpage. Activate the extension and watch as DOM elements are highlighted with different colors. |
文件大小 | 5.2 KB |
安装次数 | 171 |
当前版本 | 1.0 |
更新时间 | 2023-01-26 |
上架时间 | 2023-01-01 |
开发者 | noeclement |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "DOM Outliner", "description": "Outline elements within a webpage. Activate the extension and watch as DOM elements are highlighted with different colors.", "version": "1.0", "background": { "service_worker": "background.js" }, "action": { "default_title": "Outline DOM elements of current page" }, "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "activeTab", "scripting" ] } |