Inspect and view changes in Table Capture source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"version": "11.0.22",
"name": "__MSG_extensionName__",
"short_name": "__MSG_extensionShortName__",
"description": "__MSG_extensionDesc__",
"author": "George Mike",
"default_locale": "en",
"homepage_url": "https://georgemike.com/tablecapture/",
"icons": {
"128": "src/assets/favicon-128x128.png"
},
"permissions": [
"contextMenus",
"storage",
"tabs",
"webNavigation"
],
"host_permissions": [
"<all_urls>"
],
"optional_permissions": [
"identity",
"userScripts"
],
"action": {
"title": "__MSG_extensionName__",
"default_title": "__MSG_extensionName__",
"default_popup": "popup.html",
"default_icon": {
"128": "src/assets/favicon-128x128.png"
}
},
"options_page": "options.html",
"background": {
"service_worker": "src/app/background.js",
"type": "module"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"<all_urls>"
],
"exclude_matches": [],
"js": [
"src/app/content.js"
],
"css": [
"src/styles/lib/hint.min.css",
"src/styles/style-content.css"
],
"all_frames": true,
"match_about_blank": true
}
],
"web_accessible_resources": [
{
"resources": [
"src/assets/loader.gif",
"src/assets/icon.png",
"src/assets/icon.csv.b.png",
"src/assets/icon.clipboard.add.png",
"src/assets/icon.clipboard.edit.png",
"src/assets/icon.excel.svg",
"src/assets/icon.html.png",
"src/assets/icon.markdown.png",
"src/assets/icon.menu.png",
"src/assets/icon.o365.png",
"src/assets/icon.sheets.png",
"src/assets/icon.screenshot.big.png",
"src/assets/icon.cloud.128.png",
"activate.html",
"activity.html",
"clips.html",
"cloud.html",
"debug.html",
"manage-sheets.html",
"options.html",
"pdf-extract.html",
"recipes.html",
"support.html",
"table-edit.html",
"upgrade.html",
"onboard/onboard.html"
],
"matches": [
"https://*/*",
"http://*/*",
"file://*/*"
]
}
],
"commands": {
"launch-table-capture-workshop": {
"suggested_key": {
"default": "Ctrl+Shift+E",
"windows": "Alt+Shift+E",
"mac": "Alt+Shift+E"
},
"description": "Launch Workshop"
},
"launch-inline-actions": {
"suggested_key": {
"default": "Ctrl+Shift+D",
"windows": "Alt+Shift+D",
"mac": "Alt+Shift+D"
},
"description": "__MSG_keyboardShortcutInlineActions__"
}
},
"oauth2": {
"client_id": "134705207172-cjqlrudj323jpldsf98sjmfaf2045b05.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/spreadsheets",
"https://www.googleapis.com/auth/userinfo.email"
]
},
"sandbox": {
"pages": [
"js-evaluator.html"
]
}
}