Larus
Larus extension for copart
Larus क्या है?
Larus laruslogistics1 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Larus extension for copart"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Larus एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } ] } |