ThumbnailTest.com Analytics Processor
Automatically grab analytics from youtube studio to track your A/B testing results. For use with ThumbnailTest.com only.
Co je ThumbnailTest.com Analytics Processor?
ThumbnailTest.com Analytics Processor je rozšíření Chrome vyvinuté ThumbnailTest, a jeho hlavní funkcí je „Automatically grab analytics from youtube studio to track your A/B testing results. For use with ThumbnailTest.com only.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření ThumbnailTest.com Analytics Processor
Stáhněte si soubory rozšíření ThumbnailTest.com Analytics Processor ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Tired of manually uploading analytics to ThumbnailTest.com? Downloading this mini chrome extension to automatically grab all your test data at once. No more download/upload once per test. Open studio once, and have all your tests updated instantly with the most recent data.
Základní Informace o Rozšíření
Název | ThumbnailTest.com Analytics Processor |
ID | nngegidkalhoiiiehbfpfmjkeiainija |
Oficiální URL | https://chromewebstore.google.com/detail/thumbnailtestcom-analytic/nngegidkalhoiiiehbfpfmjkeiainija |
Popis | Automatically grab analytics from youtube studio to track your A/B testing results. For use with ThumbnailTest.com only. |
Velikost souboru | 123 KB |
Počet instalací | 2,008 |
Aktuální Verze | 1.5.2 |
Poslední Aktualizace | 2024-02-06 |
Datum Vydání | 2023-03-01 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | ThumbnailTest |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://thumbnailtest.com |
URL Stránky Zásad Ochrany Soukromí | https://app.thumbnailtest.com/privacy |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ThumbnailTest.com Analytics Processor", "description": "Automatically grab analytics from youtube studio to track your A\/B testing results. For use with ThumbnailTest.com only.", "version": "1.5.2", "options_ui": { "page": "options.html" }, "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/app.thumbnailtest.com\/*", "*:\/\/youtube.com\/*", "*:\/\/studio.youtube.com\/*" ], "exclude_matches": [ "*:\/\/studio.youtube.com\/video\/*\/editor" ], "js": [ "js\/content_script.js", "js\/inject.js" ], "run_at": "document_start", "all_frames": true } ], "web_accessible_resources": [ { "resources": [ "js\/sendConfig.js", "js\/sweet.js" ], "matches": [ "*:\/\/app.thumbnailtest.com\/*", "*:\/\/youtube.com\/*", "*:\/\/studio.youtube.com\/*" ] } ], "background": { "service_worker": "js\/background.js" }, "permissions": [ "activeTab", "tabs", "storage" ], "host_permissions": [ "*:\/\/app.thumbnailtest.com\/*", "*:\/\/youtube.com\/*", "*:\/\/studio.youtube.com\/*" ] } |