Larus
Larus extension for copart
Larusคืออะไร?
Larus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย laruslogistics1 และคุณลักษณะหลักของมันคือ "Larus extension for copart"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Larus
ดาวน์โหลดไฟล์ส่วนขยาย Larus ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Larus |
ID | dakpegdpncnmmdkjdcggldmepjebfmhe |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/larus/dakpegdpncnmmdkjdcggldmepjebfmhe |
คำอธิบาย | Larus extension for copart |
ขนาดไฟล์ | 68.41 KB |
จำนวนการติดตั้ง | 81 |
เวอร์ชันปัจจุบัน | 3.0 |
อัปเดตครั้งล่าสุด | 2021-09-16 |
วันที่เผยแพร่ | 2021-07-10 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | laruslogistics1 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.laruslogistics.com |
URL หน้านโยบายความเป็นส่วนตัว | https://docs.google.com/document/d/1rQYtvpTxWYl0ka3_FBVCSwjeAZRcJ1mJpBgArp4Yvo8/edit?usp=sharing |
ภาษาที่รองรับ | 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" ] } ] } |