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
Eメール [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:\/\/*\/*"
    ]
}