Nexweave - Website Personalization

Personalize websites on the go using URL parameters

Что такое Nexweave - Website Personalization?

Nexweave - Website Personalization - это расширение Chrome, разработанное Nexweave, и его основная функция - "Personalize websites on the go using URL parameters".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Nexweave - Website Personalization

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

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

                        Nexweave Website Personalization helps you to personalize your website using our on spot editor. You can use campaigns created from Nexweave to use in your website. These personalized websites can then be delivered with a simple script tag. Add the personalization variables using URL parameters and give your users a personalized and increasingly engaging website experience.                    

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

Название Nexweave - Website Personalization Nexweave - Website Personalization
ID bpepmpmpcadijihffpfiohfdffpmggeg
Официальный URL https://chromewebstore.google.com/detail/nexweave-website-personal/bpepmpmpcadijihffpfiohfdffpmggeg
Описание Personalize websites on the go using URL parameters
Размер файла 1.13 MB
Количество установок 560
Текущая Версия 1.0.11
Последнее Обновление 2023-04-15
Дата публикации 2021-04-08
Разработчик Nexweave
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://nexweave.com/
URL страницы помощи https://nexweave.com/
URL страницы политики конфиденциальности https://www.nexweave.com/privacy
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Nexweave - Website Personalization",
    "description": "Personalize websites on the go using URL parameters",
    "version": "1.0.11",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": "nexweave-logo.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/vendor.js",
                "js\/content_script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/vendor.js",
            "js\/background.js"
        ]
    },
    "permissions": [
        "storage",
        ""
    ],
    "web_accessible_resources": [
        "\/views\/*"
    ]
}