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",
"manifest_version": 3,
"default_locale": "en",
"name": "HTML To Tailwind",
"version": "1.0.1",
"description": "Chrome extension to help convert any web page to tailwind css classes",
"permissions": [
"storage",
"activeTab",
"debugger",
"clipboardWrite"
],
"background": {
"service_worker": "background.iife.js",
"type": "module"
},
"action": {
"default_title": "Click to open panel"
},
"icons": {
"256": "icon-256.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content-ui\/index.iife.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"*.js",
"*.css",
"*.svg",
"icon-256.png"
],
"matches": [
"*:\/\/*\/*",
"file:\/\/*\/*"
]
}
]
}