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 |
官方網址 | 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" ] } |