DOM Outliner
Outline elements within a webpage. Activate the extension and watch as DOM elements are highlighted with different colors.
Τι είναι το DOM Outliner;
Το DOM Outliner είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον noeclement, και η κύρια λειτουργία του είναι "Outline elements within a webpage. Activate the extension and watch as DOM elements are highlighted with different colors.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης DOM Outliner
Λήψη αρχείων επέκτασης 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" ] } |