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": "Ebay Purchase History Downloader",
"description": "Downloads Ebay's purchase history",
"version": "3.8",
"permissions": [
"activeTab",
"scripting"
],
"host_permissions": [
"*:\/\/*.ebay.com\/*",
"*:\/\/*.ebay.co.uk\/*",
"*:\/\/*.ebay.com.au\/*",
"*:\/\/*.ebay.com.ca\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.ebay.com\/*",
"*:\/\/*.ebay.co.uk\/*",
"*:\/\/*.ebay.com.au\/*",
"*:\/\/*.ebay.com.ca\/*"
],
"js": [
"\/src\/jquery.js",
"\/src\/sheet-min.js",
"\/src\/file-saver-min.js",
"content.js"
],
"run_at": "document_idle"
}
],
"action": {
"default_title": "Download Purchase History",
"default_icon": "icon.png",
"default_popup": "popup.html"
}
}