Zoovu Browser Plugin

This is a Zoovu Browser Extension that enables new features.

Zoovu Browser Plugin क्या है?

Zoovu Browser Plugin developer द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This is a Zoovu Browser Extension that enables new features."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Zoovu Browser Plugin एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        The Zoovu chrome extension enables you to test, integrate and implement your digital assistant, directly on the browser page, they are integrated on. 

Features include: 

Invisible Mode – Disable interaction tracking while viewing and testing your own digital assistant
Draft Preview – See your most recent changes reflected on the web page, without publishing live
Debug Mode - Easily view and verify your recommendation logic while navigating through your digital assistant, via a pop-up window 

Also available, when running an A/B test, you can choose which version of the assistant you want to view. Key Performance Indicators will be displayed directly through the chrome extension via a pop-up. 

Finally, the new Tracking tab will auto-generate a single line of code to integrate into the ‘Thank You’ page to set-up your tracking, without the need for custom JavaScript code.                    

एक्सटेंशन की मूल जानकारी

नाम Zoovu Browser Plugin Zoovu Browser Plugin
ID pmfppogmhdcomdppgjmiopefjcmkkkad
आधिकारिक URL https://chromewebstore.google.com/detail/zoovu-browser-plugin/pmfppogmhdcomdppgjmiopefjcmkkkad
विवरण This is a Zoovu Browser Extension that enables new features.
फ़ाइल का आकार 2.05 MB
स्थापना संख्या 129
वर्तमान संस्करण 1.8
अंतिम अपडेट 2023-05-12
प्रकाशन तिथि 2021-03-30
डेवलपर developer
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.zoovu.com
सहायता पृष्ठ URL https://zoovu.zendesk.com/hc/en-us/articles/360019194920-Zoovu-Chrome-Extension
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Zoovu Browser Plugin",
    "version": "1.8",
    "description": "This is a Zoovu Browser Extension that enables new features.",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage",
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "*:\/\/*.amazonaws.com\/prod\/*",
        "*:\/\/*.amazonaws.com\/prod\/CollectSalesEvent",
        "*:\/\/ev-barracuda.zoovu.com\/prod\/*",
        "*:\/\/*.zoovu.com\/api\/v1\/sessions\/*\/put",
        "*:\/\/*.zoovu.com\/*\/api\/v1\/advisors\/*\/products*",
        "*:\/\/*.zoovu.com\/*\/api\/v1\/advisors\/*\/model*"
    ],
    "background": {
        "scripts": [
            "background\/main.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": "images\/icons\/16x16\/active-16x16.png",
            "48": "images\/icons\/48x48\/active-48x48.png",
            "64": "images\/icons\/64x64\/active-64x64.png",
            "128": "images\/icons\/128x128\/active-128x128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icons\/16x16\/active-16x16.png",
        "48": "images\/icons\/48x48\/active-48x48.png",
        "64": "images\/icons\/64x64\/active-64x64.png",
        "128": "images\/icons\/128x128\/active-128x128.png"
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "scripts\/components\/debugMode\/modal.style.js",
        "scripts\/components\/debugMode\/modal.js",
        "scripts\/components\/debugMode\/helper.js",
        "scripts\/components\/draftMode\/helper.js",
        "scripts\/components\/abTestMode\/helper.js",
        "scripts\/components\/successTracking\/helper.js",
        "scripts\/components\/contentScript\/helper.js",
        "scripts\/webPageDOM.js",
        "images\/resize_icon.svg",
        "images\/timer_icon.svg",
        "images\/eye_icon.svg",
        "images\/integrated_icon.svg",
        "images\/right_icon.svg",
        "images\/reload_icon.svg",
        "contentScript.js"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}