Larus
Larus extension for copart
Larus là gì?
Larus là một tiện ích mở rộng Chrome được phát triển bởi laruslogistics1, và tính năng chính của nó là "Larus extension for copart".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Larus
Tải xuống các tệp mở rộng Larus dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Larus |
ID | dakpegdpncnmmdkjdcggldmepjebfmhe |
URL Chính Thức | https://chromewebstore.google.com/detail/larus/dakpegdpncnmmdkjdcggldmepjebfmhe |
Mô tả | Larus extension for copart |
Kích Thước Tệp | 68.41 KB |
Số Lần Cài Đặt | 81 |
Phiên Bản Hiện Tại | 3.0 |
Cập Nhật Lần Cuối | 2021-09-16 |
Ngày Phát Hành | 2021-07-10 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | laruslogistics1 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.laruslogistics.com |
URL Trang Chính Sách Bảo Mật | https://docs.google.com/document/d/1rQYtvpTxWYl0ka3_FBVCSwjeAZRcJ1mJpBgArp4Yvo8/edit?usp=sharing |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |