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",
"manifest_version": 3,
"name": "Text to Image",
"description": "Transform plain text into gorgeous visuals! Create stunning images with custom fonts and colors. Perfect for creators & marketers",
"version": "2.2.0",
"action": {
"default_icon": "images\/icon.png",
"default_title": "Open Text to Image Editor"
},
"permissions": [
"storage",
"clipboardWrite",
"contextMenus"
],
"icons": {
"16": "images\/icon.png",
"48": "images\/icon.png",
"128": "images\/icon.png"
},
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"<all_urls>"
],
"commands": {
"open_studio": {
"suggested_key": {
"default": "Alt+Shift+T"
},
"description": "Open Text to Image Editor"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.js"
],
"css": [
"style.css"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"style.css"
],
"matches": [
"<all_urls>"
]
}
]
}