AddOns.LA

An AddOns.LA multi-functional chrome extension. Powered by ArtusMode.

Co je AddOns.LA?

AddOns.LA je rozšíření Chrome vyvinuté https://addons.la, a jeho hlavní funkcí je „An AddOns.LA multi-functional chrome extension. Powered by ArtusMode.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření AddOns.LA

Stáhněte si soubory rozšíření AddOns.LA ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        An ArtusMode Chrome Extension for Client Information Screen Pops

This allows customers of AddOns.LA to:

1. Get pop-up windows when their phone rings or an event in their AddOns.LA account,
2. Inject AddOns tabs, call/SMS shortcuts and support screen share icons into their native LimoAnywhere account (you can enable/disable which tabs to use in your AddOns.LA account per employee)
3. Redirect to a specific trip after logging in to LimoAnywhere, to avoid being dropped back onto the main page instead of the trip you tried to access.                    

Základní Informace o Rozšíření

Název AddOns.LA AddOns.LA
ID ppeafcmpnlhfpajdcjoddeopdbnadjaf
Oficiální URL https://chromewebstore.google.com/detail/addonsla/ppeafcmpnlhfpajdcjoddeopdbnadjaf
Popis An AddOns.LA multi-functional chrome extension. Powered by ArtusMode.
Velikost souboru 1.03 MB
Počet instalací 1,734
Aktuální Verze 6.4.1
Poslední Aktualizace 2023-07-21
Datum Vydání 2019-12-11
Hodnocení 5.00/5 Celkem 4 Hodnocení
Vývojář https://addons.la
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.addons.la/
URL Stránky Nápovědy https://www.addons.la/privacy/
URL Stránky Zásad Ochrany Soukromí https://www.addons.la/privacy
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AddOns.LA",
    "version": "6.4.1",
    "description": "An AddOns.LA multi-functional chrome extension. Powered by ArtusMode.",
    "icons": {
        "128": ".\/icons\/addons_logo_trans_128.png",
        "48": ".\/icons\/addons_logo_trans_48.png",
        "16": ".\/icons\/addons_logo_trans_16.png"
    },
    "browser_action": {
        "default_icon": ".\/icons\/addons_logo_trans_16.png",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background_functions.js",
            "event.js",
            "background.js",
            "jquery-3.2.1.min.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.mylimobiz.com\/admin*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content_header.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.mylimobiz.com\/admin\/manageRes*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content_reserv.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/*.addons.la\/communications\/phone\/screen_pop.php*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content_screenpop.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.mylimobiz.com\/admin\/manageQuotes.*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content_quotes.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.mylimobiz.com\/admin\/default.asp"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content_admin_default.js"
            ]
        },
        {
            "matches": [
                "https:\/\/manage.mylimobiz.com\/admin\/Scheduler.asp"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content_calendar.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.mylimobiz.com\/admin\/managePrint.*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content_tools.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.mylimobiz.com\/admin\/DispatchGrid.*",
                "https:\/\/*.mylimobiz.com\/admin\/dispatchgrid.*",
                "https:\/\/*.mylimobiz.com\/admin\/Map.*",
                "https:\/\/*.mylimobiz.com\/admin\/map.*",
                "https:\/\/*.mylimobiz.com\/admin\/Graph.*",
                "https:\/\/*.mylimobiz.com\/admin\/graph.*",
                "https:\/\/*.mylimobiz.com\/admin\/GPS.*",
                "https:\/\/*.mylimobiz.com\/admin\/gps.*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content_dispatch.js"
            ]
        }
    ],
    "permissions": [
        "background",
        "storage",
        "activeTab",
        "https:\/\/*.mylimobiz.com\/*",
        "https:\/\/*.addons.la\/communications\/phone\/screen_pop.php*",
        "https:\/\/*.addons.la\/people\/employees\/chrome\/*",
        "https:\/\/*.addons.la\/addonsla\/comms\/*",
        "webRequest",
        ""
    ],
    "web_accessible_resources": [
        "icons\/*.png",
        "dispatch_reload.js"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/*.addons.la\/*"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/ortc-developers.realtime.co\/server\/ssl\/2.1\/; object-src 'self'"
}