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文件
下載Tailwind CSS Media Query Inspector擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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}" } } } |