Larus
Larus extension for copart
Larusとは何ですか?
Larusはlaruslogistics1によって開発されたChromeの拡張機能で、その主な機能は「Larus extension for copart」です。
拡張機能のスクリーンショット
Larus拡張機能のCRXファイルをダウンロード
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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
}
]
} | |