Tailwind CSS Media Query Inspector
Easily see which breakpoint you are currently in without cluttering up your UI.
Hvad er Tailwind CSS Media Query Inspector?
Tailwind CSS Media Query Inspector er en Chrome-udvidelse udviklet af https://owenmelbourne.com, og dens hovedfunktion er "Easily see which breakpoint you are currently in without cluttering up your UI.".
Udvidelsesskærmbilleder
Download Tailwind CSS Media Query Inspector-udvidelses-CRX-fil
Download Tailwind CSS Media Query Inspector-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Tailwind CSS Media Query Inspector |
ID | pipocicnhgaphjjmcchdnnaoofncdfnn |
Officiel URL | https://chromewebstore.google.com/detail/tailwind-css-media-query/pipocicnhgaphjjmcchdnnaoofncdfnn |
Beskrivelse | Easily see which breakpoint you are currently in without cluttering up your UI. |
Filstørrelse | 631 KB |
Antal Installationer | 742 |
Nuværende Version | 0.0.2 |
Senest Opdateret | 2020-09-06 |
Udgivelsesdato | 2020-09-06 |
Bedømmelse | 3.00/5 Samlet 4 Bedømmelser |
Udvikler | https://owenmelbourne.com |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/OwenMelbz/chrome-media-query-inspector |
Hjælpeside-URL | https://github.com/OwenMelbz/chrome-media-query-inspector/issues |
Understøttede Sprog | 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}" } } } |