Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Tailwind responsive breakpoint display",
"description": "Display screen dimensions and tailwind breakpoint prefix.",
"version": "0.4.2",
"manifest_version": 3,
"web_accessible_resources": [
{
"resources": [
"content-script-sidebar.css",
"popup\/popup.js",
"popup\/popup.css"
],
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
]
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Display screen dimensions and tailwind breakpoint prefix.",
"default_popup": "popup\/index.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"content-script.js",
"content-script-sidebar.js"
],
"css": [],
"run_at": "document_end"
}
],
"permissions": [
"storage"
],
"icons": {
"32": "images\/icon_32.png",
"48": "images\/icon_48.png",
"128": "images\/icon_128.png"
}
}