Easily download HTML tables as CSV files with a single click.
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": 2,
"name": "Table to CSV Downloader",
"version": "1.0.0",
"description": "Easily download HTML tables as CSV files with a single click.",
"permissions": [
"activeTab",
"storage"
],
"browser_specific_settings": {
"gecko": {
"id": "table-to-csv@example.com"
}
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
}
}