CSS Deconstructed
This extension breaks down then reapplies the CSS (one rule at at time) for a specific element
CSS Deconstructed là gì?
CSS Deconstructed là một tiện ích mở rộng Chrome được phát triển bởi kabbnigam, và tính năng chính của nó là "This extension breaks down then reapplies the CSS (one rule at at time) for a specific element".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng CSS Deconstructed
Tải xuống các tệp mở rộng CSS Deconstructed dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | inhlobcefhlmdljoeigpbpdehlpciohh |
URL Chính Thức | https://chrome.google.com/webstore/detail/css-deconstructed/inhlobcefhlmdljoeigpbpdehlpciohh |
Mô tả | This extension breaks down then reapplies the CSS (one rule at at time) for a specific element |
Kích Thước Tệp | 39.98 KB |
Số Lần Cài Đặt | 434 |
Phiên Bản Hiện Tại | 0.0.0.3 |
Cập Nhật Lần Cuối | 2016-07-23 |
Ngày Phát Hành | 2016-07-23 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | kabbnigam |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |