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",
"description": "This extension to scrape order details from Amazon",
"version": "4.4.1",
"manifest_version": 3,
"name": "Amazon Order Details Scraper",
"background": {
"service_worker": "background.bundle.js"
},
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"<all_urls>"
],
"js": [
"contentScript.bundle.js"
],
"css": [
"content.styles.css"
],
"run_at": "document_start"
}
],
"permissions": [
"storage",
"tabs",
"activeTab",
"downloads"
],
"host_permissions": [
"*:\/\/*.google.com\/*",
"*:\/\/*.youtube.com\/*"
],
"web_accessible_resources": [
{
"resources": [
"content.styles.css",
"icon-128.png",
"icon-34.png"
],
"matches": []
}
],
"icons": {
"34": "icon-34.png",
"128": "icon-128.png"
}
}