VWO Campaigns
View all VWO campaigns running on a page
VWO Campaignsとは何ですか?
VWO Campaignsはjananilakshmanamurthyによって開発されたChromeの拡張機能で、その主な機能は「View all VWO campaigns running on a page」です。
拡張機能のスクリーンショット
VWO Campaigns拡張機能のCRXファイルをダウンロード
VWO Campaigns拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | VWO Campaigns |
ID | nicniafaonbgngeafndijllgloaockkf |
公式URL | https://chromewebstore.google.com/detail/vwo-campaigns/nicniafaonbgngeafndijllgloaockkf |
説明 | View all VWO campaigns running on a page |
ファイルサイズ | 10.65 KB |
インストール数 | 68 |
現在のバージョン | 2.0 |
最終更新日 | 2021-11-13 |
公開日 | 2021-08-22 |
開発者 | jananilakshmanamurthy |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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" } } |