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
官方網址 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:\/\/*\/*"
    ]
}