Larus
Larus extension for copart
What is Larus?
Larus is a Chrome extension developed by laruslogistics1, and its main feature is "Larus extension for copart".
Extension Screenshots
Download Larus Extension CRX File
Download Larus extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
An indispensable tool for a car dealer. Expands the functionality of the site copart.com. Helps with managing bids and watch lists due to an additional level of accounts.
Extension Basic Information
Name | Larus |
ID | dakpegdpncnmmdkjdcggldmepjebfmhe |
Official URL | https://chromewebstore.google.com/detail/larus/dakpegdpncnmmdkjdcggldmepjebfmhe |
Description | Larus extension for copart |
File Size | 68.41 KB |
Installation Count | 81 |
Current Version | 3.0 |
Last Updated | 2021-09-16 |
Publish Date | 2021-07-10 |
Rating | 5.00/5 Total 3 Ratings |
Developer | laruslogistics1 |
[email protected] | |
Payment Type | free |
Extension Website | https://www.laruslogistics.com |
Privacy Policy Page URL | https://docs.google.com/document/d/1rQYtvpTxWYl0ka3_FBVCSwjeAZRcJ1mJpBgArp4Yvo8/edit?usp=sharing |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Larus", "version": "3.0", "description": "Larus extension for copart", "icons": { "128": "icon.png" }, "content_security_policy": "script-src 'self' https:\/\/kit.fontawesome.com\/19ff28de9a.js; object-src 'self'", "browser_action": { "default_title": "Copart", "default_popup": "\/popup\/popup.html" }, "background": { "scripts": [ "\/background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/www.copart.com\/login\/" ], "js": [ "\/auth.js" ] }, { "matches": [ "https:\/\/www.copart.com\/lot\/*" ], "all_frames": true, "js": [ "\/lot.js" ] }, { "matches": [ "https:\/\/www.copart.com\/ru\/lot\/*" ], "all_frames": true, "js": [ "\/lot.js" ] }, { "matches": [ "https:\/\/www.copart.com\/lotsWon\/" ], "all_frames": true, "js": [ "\/lotsWon.js" ] }, { "matches": [ "https:\/\/www.copart.com\/helpWithLicensing\/" ], "all_frames": true, "js": [ "\/exit.js" ] }, { "matches": [ "https:\/\/www.copart.com\/*" ], "all_frames": true, "exclude_matches": [ "https:\/\/www.copart.com\/login\/", "https:\/\/www.copart.com\/helpWithLicensing\/", "https:\/\/www.copart.com\/ru\/lot\/*", "https:\/\/www.copart.com\/lot\/*", "https:\/\/www.copart.com\/lotsWon\/*" ], "js": [ "\/parser.js" ] } ] } |