Larus

Larus extension for copart

什麼是Larus?

Larus是由laruslogistics1開發的Chrome擴展程式,該擴展的主要功能是“Larus extension for copart”。

擴展截圖

screenshot
screenshot

下載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.                    

擴展基本資訊

名稱 Larus Larus
ID dakpegdpncnmmdkjdcggldmepjebfmhe
官方網址 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"
            ]
        }
    ]
}