CSS Deconstructed
This extension breaks down then reapplies the CSS (one rule at at time) for a specific element
CSS Deconstructed란 무엇입니까?
CSS Deconstructed은(는) kabbnigam에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension breaks down then reapplies the CSS (one rule at at time) for a specific element"입니다.
확장 프로그램 스크린샷
CSS Deconstructed 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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!
확장 프로그램 기본 정보
이름 | |
ID | inhlobcefhlmdljoeigpbpdehlpciohh |
공식 URL | https://chrome.google.com/webstore/detail/css-deconstructed/inhlobcefhlmdljoeigpbpdehlpciohh |
설명 | This extension breaks down then reapplies the CSS (one rule at at time) for a specific element |
파일 크기 | 39.98 KB |
설치 횟수 | 434 |
현재 버전 | 0.0.0.3 |
최근 업데이트 | 2016-07-23 |
출시 날짜 | 2016-07-23 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | kabbnigam |
결제 유형 | free |
지원되는 언어 | 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" ] } |