ThumbnailTest.com Analytics Processor
Automatically grab analytics from youtube studio to track your A/B testing results. For use with ThumbnailTest.com only.
Cos'è ThumbnailTest.com Analytics Processor?
ThumbnailTest.com Analytics Processor è un'estensione di Chrome sviluppata da ThumbnailTest, e la sua funzione principale è "Automatically grab analytics from youtube studio to track your A/B testing results. For use with ThumbnailTest.com only.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ThumbnailTest.com Analytics Processor
Scarica i file di estensione ThumbnailTest.com Analytics Processor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | ThumbnailTest.com Analytics Processor |
ID | nngegidkalhoiiiehbfpfmjkeiainija |
URL Ufficiale | https://chromewebstore.google.com/detail/thumbnailtestcom-analytic/nngegidkalhoiiiehbfpfmjkeiainija |
Descrizione | Automatically grab analytics from youtube studio to track your A/B testing results. For use with ThumbnailTest.com only. |
Dimensione del File | 123 KB |
Conteggio Installazioni | 2,008 |
Versione Corrente | 1.5.2 |
Ultimo Aggiornamento | 2024-02-06 |
Data di Pubblicazione | 2023-03-01 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | ThumbnailTest |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://thumbnailtest.com |
URL della Pagina della Politica sulla Privacy | https://app.thumbnailtest.com/privacy |
Lingue Supportate | 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\/*" ] } |