CSS Deconstructed
This extension breaks down then reapplies the CSS (one rule at at time) for a specific element
Was ist CSS Deconstructed?
CSS Deconstructed ist eine Chrome-Erweiterung, die von kabbnigam entwickelt wurde, und ihr Hauptmerkmal ist "This extension breaks down then reapplies the CSS (one rule at at time) for a specific element".
Erweiterungsscreenshots
CSS Deconstructed-Erweiterungs-CRX-Datei herunterladen
Laden Sie CSS Deconstructed-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
CSS Deconstructed is a tool for web developers to study the CSS of any given website. It allows users to remove all the styling for a specific element on a website and then re-apply the CSS rules one at a time at a speed of their preference. This tool provides valuable insight as to how different websites are constructed by visually building the site from scratch, right in front of your eyes. How To Use: - Inspect the HTML of a website you are interested in deconstructing. - Choose the outer most selector that encompasses the part of the page you are interested in studying (**NOTE: If inspecting the whole page or a complex element, do note that it may take a while to rebuild.) - Click the CSS Deconstructed Icon and enter in the selector, class, and/or ID. - Choose how quickly you want each rule to be applied (often good to start with 10 ms) - Click "Deconstruct!" to remove all CSS styling. - Click "Build!" to re-apply each CSS rule. - Watch your favorite site be rebuilt!
Grundlegende Informationen zur Erweiterung
Name | |
ID | inhlobcefhlmdljoeigpbpdehlpciohh |
Offizielle URL | https://chrome.google.com/webstore/detail/css-deconstructed/inhlobcefhlmdljoeigpbpdehlpciohh |
Beschreibung | This extension breaks down then reapplies the CSS (one rule at at time) for a specific element |
Dateigröße | 39.98 KB |
Installationsanzahl | 434 |
Aktuelle Version | 0.0.0.3 |
Letztes Update | 2016-07-23 |
Veröffentlichungsdatum | 2016-07-23 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | kabbnigam |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CSS Deconstructed", "description": "This extension breaks down then reapplies the CSS (one rule at at time) for a specific element", "version": "0.0.0.3", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "scripts": [ "jquery.min.js" ], "persistent": false }, "content_scripts": [ { "js": [ "jquery.min.js", "content_script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "permissions": [ "activeTab", "storage" ] } |