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",
"description": "A extension which convert screenshots to React tailwind code",
"version": "0.0.4",
"manifest_version": 3,
"name": "Screenshot to Code",
"background": {
"service_worker": "background.bundle.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": "icon_40.png"
},
"icons": {
"48": "icon_40.png",
"128": "icon_128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"<all_urls>"
],
"js": [
"contentScript.bundle.js"
],
"css": [
"content.styles.css"
]
}
],
"devtools_page": "devtools.html",
"web_accessible_resources": [
{
"resources": [
"content.styles.css",
"icon_128.png",
"icon_40.png"
],
"matches": []
}
],
"permissions": [
"storage",
"activeTab"
]
}