Google Optimize AB Selector

This extension allows you to select variants of A/B testing by the Google Optimize.

什么是Google Optimize AB Selector?

Google Optimize AB Selector是由Yujiro Takeda开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to select variants of A/B testing by the Google Optimize.”。

扩展截图

screenshot
screenshot
screenshot

下载Google Optimize AB Selector扩展crx文件

下载Google Optimize AB Selector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Google Optimize A/B testing is very useful.
But isn't it very difficult to confirm the test you made?
Clear the cache or reload the page many times. ..

This extension solves it with the following features:
1. When the Google Optimize management screen is displayed, the test settings are automatically loaded.
2. On the test page, you can select and display the desired variant.

Reduce wasted work and focus on improvement!                    

扩展基本信息

名称 Google Optimize AB Selector Google Optimize AB Selector
ID beokjaefopekfpjfejcdecdeoebeebbb
官方URL https://chromewebstore.google.com/detail/google-optimize-ab-select/beokjaefopekfpjfejcdecdeoebeebbb
简介 This extension allows you to select variants of A/B testing by the Google Optimize.
文件大小 1.94 MB
安装次数 1,321
当前版本 0.5.2
更新时间 2022-03-24
上架时间 2021-08-10
开发者 Yujiro Takeda
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/ujiro99/optimize-ab-selector
帮助页面URL https://github.com/ujiro99/optimize-ab-selector/issues
隐私政策页面URL https://github.com/ujiro99/optimize-ab-selector/blob/master/docs/privacy-policy.md
支持的语言 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "0.5.2",
    "default_locale": "en",
    "action": {
        "default_icon": "img\/icon16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "eventPage.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/optimize.google.com\/*"
            ],
            "js": [
                "js\/contentScript.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/optimizeStatusCheck.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "permissions": [
        "cookies",
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}