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" ] } ] } |