Tailwind CSS Media Query Inspector
Easily see which breakpoint you are currently in without cluttering up your UI.
Tailwind CSS Media Query Inspector란 무엇입니까?
Tailwind CSS Media Query Inspector은(는) https://owenmelbourne.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily see which breakpoint you are currently in without cluttering up your UI."입니다.
확장 프로그램 스크린샷
Tailwind CSS Media Query Inspector 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Adds a really simple icon to your chrome extension toolbar that displays the current media query you're within. By default it ships with the TailwindCSS media queries, however you can configure as many media query rules as you like from the extension. This does not attempt to parse the CSS from a website, it simply monitors the media queries you enter. V2 will allow you to configure different media queries per domain.
확장 프로그램 기본 정보
이름 | Tailwind CSS Media Query Inspector |
ID | pipocicnhgaphjjmcchdnnaoofncdfnn |
공식 URL | https://chromewebstore.google.com/detail/tailwind-css-media-query/pipocicnhgaphjjmcchdnnaoofncdfnn |
설명 | Easily see which breakpoint you are currently in without cluttering up your UI. |
파일 크기 | 631 KB |
설치 횟수 | 742 |
현재 버전 | 0.0.2 |
최근 업데이트 | 2020-09-06 |
출시 날짜 | 2020-09-06 |
평점 | 3.00/5 총 4 개의 평점 |
개발자 | https://owenmelbourne.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/OwenMelbz/chrome-media-query-inspector |
도움말 페이지 URL | https://github.com/OwenMelbz/chrome-media-query-inspector/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tailwind CSS Media Query Inspector", "version": "0.0.2", "manifest_version": 2, "description": "Easily see which breakpoint you are currently in without cluttering up your UI.", "homepage_url": "https:\/\/github.com\/OwenMelbz\/chrome-media-query-inspector", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_title": "MQL", "default_popup": "popup.html" }, "default_locale": "en", "background": { "scripts": [ "js\/background.js" ], "persistent": true }, "permissions": [ "https:\/\/*\/*", "storage" ], "content_security_policy": "default-src 'self'; style-src 'unsafe-inline';", "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "js\/content.js" ] } ], "applications": { "gecko": { "id": "{730920a1-c691-438c-b0c6-a582a8b72922}" } } } |