Google Optimize AB Selector

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

Google Optimize AB Selector là gì?

Google Optimize AB Selector là một tiện ích mở rộng Chrome được phát triển bởi Yujiro Takeda, và tính năng chính của nó là "This extension allows you to select variants of A/B testing by the Google Optimize.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Google Optimize AB Selector

Tải xuống các tệp mở rộng Google Optimize AB Selector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Google Optimize AB Selector Google Optimize AB Selector
ID beokjaefopekfpjfejcdecdeoebeebbb
URL Chính Thức https://chromewebstore.google.com/detail/google-optimize-ab-select/beokjaefopekfpjfejcdecdeoebeebbb
Mô tả This extension allows you to select variants of A/B testing by the Google Optimize.
Kích Thước Tệp 1.94 MB
Số Lần Cài Đặt 1,321
Phiên Bản Hiện Tại 0.5.2
Cập Nhật Lần Cuối 2022-03-24
Ngày Phát Hành 2021-08-10
Nhà Phát Triển Yujiro Takeda
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ujiro99/optimize-ab-selector
URL Trang Trợ Giúp https://github.com/ujiro99/optimize-ab-selector/issues
URL Trang Chính Sách Bảo Mật https://github.com/ujiro99/optimize-ab-selector/blob/master/docs/privacy-policy.md
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
    ]
}