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,
"version": "1.1",
"name": "GrabText - Screen & Image OCR",
"description": "Select any area on your screen and extract text instantly using OCR with GrabText.",
"permissions": [
"storage",
"tabs",
"unlimitedStorage",
"activeTab",
"notifications",
"scripting",
"clipboardWrite"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_icon": {
"16": "icons\/icon16.png",
"24": "icons\/icon24.png",
"32": "icons\/icon32.png"
},
"default_popup": "src\/ui\/popup.html",
"default_title": "GrabText"
},
"options_ui": {
"page": "src\/ui\/options.html",
"open_in_tab": true
},
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
},
"web_accessible_resources": [
{
"resources": [
"\/src\/core\/index.html",
"\/src\/ui\/sandbox.html",
"\/src\/ui\/image-extract.html",
"\/src\/core\/tessdata\/*",
"\/src\/ui\/notification.html",
"\/src\/ui\/notification.js",
"\/src\/ui\/assets\/*"
],
"matches": [
"<all_urls>"
]
}
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"src\/ui\/inject.css"
],
"js": [
"src\/ui\/inject.js"
]
},
{
"matches": [
"<all_urls>"
],
"js": [
"src\/ui\/content-notification.js"
],
"all_frames": false
}
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+Shift+G",
"mac": "Alt+Shift+G"
},
"description": "Open GrabText popup"
},
"screen_capture": {
"suggested_key": {
"default": "Alt+Shift+S",
"mac": "Alt+Shift+S"
},
"description": "Grab from Screen"
}
}
}