VWO Campaigns
View all VWO campaigns running on a page
What is VWO Campaigns?
VWO Campaigns is a Chrome extension developed by jananilakshmanamurthy, and its main feature is "View all VWO campaigns running on a page".
Extension Screenshots
Download VWO Campaigns Extension CRX File
Download VWO Campaigns extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
When an application is integrated with VWO A/B testing tool and campaigns are configured to be running on its pages, this extension will be of help to identify all the campaigns running on each page.
Extension Basic Information
Name | VWO Campaigns |
ID | nicniafaonbgngeafndijllgloaockkf |
Official URL | https://chromewebstore.google.com/detail/vwo-campaigns/nicniafaonbgngeafndijllgloaockkf |
Description | View all VWO campaigns running on a page |
File Size | 10.65 KB |
Installation Count | 68 |
Current Version | 2.0 |
Last Updated | 2021-11-13 |
Publish Date | 2021-08-22 |
Developer | jananilakshmanamurthy |
[email protected] | |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "VWO Campaigns", "description": "View all VWO campaigns running on a page", "version": "2.0", "manifest_version": 3, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.microfocus.com\/*" ], "all_frames": true, "js": [ "content-script.js" ] } ], "web_accessible_resources": [ { "resources": [ "inject.js" ], "matches": [ "*:\/\/*.microfocus.com\/*" ] } ], "action": { "default_popup": "popup.html" }, "icons": { "16": "\/images\/vwo-campaigns.png", "32": "\/images\/vwo-campaigns.png", "48": "\/images\/vwo-campaigns.png", "128": "\/images\/vwo-campaigns.png" } } |