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,
"name": "TextForge - Text Expansion & Automation",
"version": "1.0.1",
"description": "Offline-first text expansion. Create shortcuts that expand into snippets with placeholders and variables.",
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"storage",
"activeTab",
"clipboardWrite"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_title": "TextForge"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_end",
"all_frames": true
}
],
"commands": {
"toggle_expansion": {
"suggested_key": {
"default": "Ctrl+Shift+E",
"mac": "Command+Shift+E"
},
"description": "Toggle text expansion on\/off"
},
"open_manager": {
"suggested_key": {
"default": "Ctrl+Shift+M",
"mac": "Command+Shift+M"
},
"description": "Open snippet manager"
},
"search_snippets": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "Command+Shift+F"
},
"description": "Search snippets"
}
},
"web_accessible_resources": [
{
"resources": [
"fonts\/*",
"inject.js"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"minimum_chrome_version": "88",
"options_page": "options.html",
"omnibox": {
"keyword": "tf"
}
}