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": "__MSG_appName__",
"version": "1.0.3",
"description": "__MSG_shortDesc__",
"default_locale": "en",
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png"
},
"permissions": [
"activeTab",
"scripting",
"sidePanel",
"storage",
"contextMenus"
],
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content-selection.js"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Open OCR Sidebar"
},
"side_panel": {
"default_path": "sidebar.html"
},
"commands": {
"start-selection": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"mac": "Command+Shift+S"
},
"description": "Start area selection for screenshot"
}
}
}