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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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:\/\/*\/*"
    ]
}