Addrexx for Bigcommerce

Autocomplete and validate address entered in the admin panel of BigCommerce. Speed the entry of phone orders by using the Addrexx…

Что такое Addrexx for Bigcommerce?

Addrexx for Bigcommerce - это расширение Chrome, разработанное https://addrexx.com, и его основная функция - "Autocomplete and validate address entered in the admin panel of BigCommerce. Speed the entry of phone orders by using the Addrexx…".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Addrexx for Bigcommerce

Скачайте файлы расширений Addrexx for Bigcommerce в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Autocomplete and validate address entered in the admin panel of BigCommerce. Speed the entry of phone orders by using the Addrexx extension for Bigcommerce.

Addrexx allow user to autocomplete zip codes, address line 1 and even address line 2.  This extension will also verify addresses when creating new customers or editing existing customer addresses.

Addrexx is one of the oldest BigCommerce partners and has been providing address validation solutions since 2013.   

Full support is available from [email protected]                    

Основная информация о расширении

Название Addrexx for Bigcommerce Addrexx for Bigcommerce
ID bgnmonnabpeilkcgpjckbdanibbelaib
Официальный URL https://chromewebstore.google.com/detail/addrexx-for-bigcommerce/bgnmonnabpeilkcgpjckbdanibbelaib
Описание Autocomplete and validate address entered in the admin panel of BigCommerce. Speed the entry of phone orders by using the Addrexx…
Размер файла 26.35 KB
Количество установок 221
Текущая Версия 2020.3
Последнее Обновление 2021-10-19
Дата публикации 2018-08-22
Рейтинг 5.00/5 Всего 3 оценок
Разработчик https://addrexx.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://addrexx.com/bigcommerce-address-validation
URL страницы помощи https://addrexx.com/ecommerce-faq
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Addrexx for Bigcommerce",
    "short_name": "Addrexx",
    "version": "2020.3",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*manage*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "script.js"
    ]
}