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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to select variants of A/B testing by the Google Optimize."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Google Optimize AB Selector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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:\/\/*\/*" ] } |