Inspect and view changes in Tailwind CSS Media Query Inspector source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"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}"
}
}
}