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": "Table to Excel", "version": "1.0.8", "default_locale": "en", "description": "Convert HTML tables to Excel files with hover effect", "permissions": [ "storage", "downloads", "clipboardWrite" ], "background": { "service_worker": "background.js" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "third_lib\/xlsx.mini.js", "content_i18n.js", "content.js" ], "css": [ "styles.css" ] } ], "commands": { "save-table": { "suggested_key": { "default": "Ctrl+Shift+O", "mac": "Command+Shift+O" }, "description": "Save table to Excel" } }, "web_accessible_resources": [ { "resources": [ "options.js", "i18n.js", "content_i18n.js" ], "matches": [ "<all_urls>" ] } ], "action": { "default_popup": "popup.html", "default_icon": { "128": "icon\/h128.png" } } }