Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "TailwindCSS Media Query Visualizer",
"version": "1.0.1",
"manifest_version": 3,
"description": "Seamlessly visualize Tailwind CSS media queries, enhancing your UI experience.",
"homepage_url": "https:\/\/github.com\/OwenMelbz\/chrome-media-query-inspector",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_title": "MQ Inspector",
"default_popup": "popup.html"
},
"default_locale": "en",
"background": {
"service_worker": "js\/background.js"
},
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"js\/content.js"
]
}
]
}