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": "Sheetszar: Copy Selection as CSV",
"version": "1.0.4",
"description": "Copy selected cells from Google Sheets as CSV, ready to paste anywhere. No downloads. No OAuth.",
"icons": {
"16": "icons\/icon-csv-16.png",
"32": "icons\/icon-csv-32.png",
"48": "icons\/icon-csv-48.png",
"128": "icons\/icon-csv-128.png"
},
"action": {
"default_title": "Sheets to CSV",
"default_icon": {
"16": "icons\/icon-csv-16.png",
"32": "icons\/icon-csv-32.png",
"48": "icons\/icon-csv-48.png",
"128": "icons\/icon-csv-128.png"
}
},
"permissions": [
"clipboardWrite"
],
"content_scripts": [
{
"matches": [
"https:\/\/docs.google.com\/spreadsheets\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
]
}