ThumbnailTest.com Analytics Processor
Automatically grab analytics from youtube studio to track your A/B testing results. For use with ThumbnailTest.com only.
Wat is ThumbnailTest.com Analytics Processor?
ThumbnailTest.com Analytics Processor is een Chrome-extensie ontwikkeld door ThumbnailTest, en de belangrijkste functie is "Automatically grab analytics from youtube studio to track your A/B testing results. For use with ThumbnailTest.com only.".
Extensie Screenshots
Download het CRX-bestand van de extensie ThumbnailTest.com Analytics Processor
Download ThumbnailTest.com Analytics Processor-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | ThumbnailTest.com Analytics Processor |
ID | nngegidkalhoiiiehbfpfmjkeiainija |
Officiële URL | https://chromewebstore.google.com/detail/thumbnailtestcom-analytic/nngegidkalhoiiiehbfpfmjkeiainija |
Beschrijving | Automatically grab analytics from youtube studio to track your A/B testing results. For use with ThumbnailTest.com only. |
Bestandsgrootte | 123 KB |
Aantal Installaties | 2,008 |
Huidige Versie | 1.5.2 |
Laatst Bijgewerkt | 2024-02-06 |
Publicatiedatum | 2023-03-01 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | ThumbnailTest |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://thumbnailtest.com |
URL van de Privacybeleid Pagina | https://app.thumbnailtest.com/privacy |
Ondersteunde Talen | 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\/*" ] } |