Copart and IAAI auctions management.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Auto Market",
"description": "Copart and IAAI auctions management.",
"version": "2.8.57",
"icons": {
"16": "obj-16x16.png",
"32": "obj-32x32.png",
"48": "obj-48x48.png",
"128": "obj-128x128.png"
},
"permissions": [
"storage",
"management",
"cookies"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "obj-16x16.png",
"default_popup": "./html/index.html"
},
"host_permissions": [
"https://www.copart.com/*",
"https://copart.com/*",
"https://www.iaai.com/*",
"https://iaai.com/*",
"https://login.iaai.com/*",
"https://www.login.iaai.com/",
"https://.login.iaai.com/*",
"https://.copart.com/"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"./css/content.css"
],
"js": [
"./modules/jquery.js",
"./modules/axios.min.js",
"./modules/core.js",
"./modules/domManipulation.js",
"./components/auctionHandlers.js",
"./components/iaaiAuctionHandler.js",
"./components/iaaiHandlers.js",
"./components/copartHandlers.js",
"./components/watchList.js",
"./components/generateCopartAdditionalSection.js",
"content_script.js"
],
"type": "module"
}
],
"manifest_version": 3
}