Capturing tabular data on websites. Export to Microsoft Excel, Google Sheets, CSV, etc.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "__MSG_extName__",
"version": "1.2",
"default_locale": "en",
"description": "__MSG_extDescription__",
"permissions": [
"contextMenus",
"activeTab"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_end"
}
],
"side_panel": {
"default_path": "popup.html"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/16.png",
"48": "images/48.png",
"128": "images/128.png"
}
},
"icons": {
"16": "images/16.png",
"48": "images/48.png",
"128": "images/128.png"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}