Google Optimize AB Selector
This extension allows you to select variants of A/B testing by the Google Optimize.
Hvad er Google Optimize AB Selector?
Google Optimize AB Selector er en Chrome-udvidelse udviklet af Yujiro Takeda, og dens hovedfunktion er "This extension allows you to select variants of A/B testing by the Google Optimize.".
Udvidelsesskærmbilleder
Download Google Optimize AB Selector-udvidelses-CRX-fil
Download Google Optimize AB Selector-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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!
Grundlæggende oplysninger om udvidelsen
Navn | Google Optimize AB Selector |
ID | beokjaefopekfpjfejcdecdeoebeebbb |
Officiel URL | https://chromewebstore.google.com/detail/google-optimize-ab-select/beokjaefopekfpjfejcdecdeoebeebbb |
Beskrivelse | This extension allows you to select variants of A/B testing by the Google Optimize. |
Filstørrelse | 1.94 MB |
Antal Installationer | 1,321 |
Nuværende Version | 0.5.2 |
Senest Opdateret | 2022-03-24 |
Udgivelsesdato | 2021-08-10 |
Udvikler | Yujiro Takeda |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/ujiro99/optimize-ab-selector |
Hjælpeside-URL | https://github.com/ujiro99/optimize-ab-selector/issues |
URL til Fortrolighedspolitik Side | https://github.com/ujiro99/optimize-ab-selector/blob/master/docs/privacy-policy.md |
Understøttede Sprog | 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:\/\/*\/*" ] } |