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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Yujiro Takeda และคุณลักษณะหลักของมันคือ "This extension allows you to select variants of A/B testing by the Google Optimize."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Optimize AB Selector
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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:\/\/*\/*" ] } |