Nexweave - Website Personalization

Personalize websites on the go using URL parameters

Co to jest Nexweave - Website Personalization?

Nexweave - Website Personalization to rozszerzenie Chrome opracowane przez Nexweave, a jego główną funkcją jest „Personalize websites on the go using URL parameters”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Nexweave - Website Personalization

Pobierz pliki rozszerzeń Nexweave - Website Personalization w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Nexweave - Website Personalization Nexweave - Website Personalization
ID bpepmpmpcadijihffpfiohfdffpmggeg
Oficjalny URL https://chromewebstore.google.com/detail/nexweave-website-personal/bpepmpmpcadijihffpfiohfdffpmggeg
Opis Personalize websites on the go using URL parameters
Rozmiar pliku 1.13 MB
Liczba instalacji 560
Aktualna Wersja 1.0.11
Ostatnia Aktualizacja 2023-04-15
Data Publikacji 2021-04-08
Deweloper Nexweave
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://nexweave.com/
Adres URL Strony Pomocy https://nexweave.com/
Adres URL Strony Polityki Prywatności https://www.nexweave.com/privacy
Obsługiwane Języki 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\/*"
    ]
}