ThumbnailTest.com Analytics Processor
Automatically grab analytics from youtube studio to track your A/B testing results. For use with ThumbnailTest.com only.
Qu'est-ce que ThumbnailTest.com Analytics Processor ?
ThumbnailTest.com Analytics Processor est une extension Chrome développée par ThumbnailTest, et sa fonction principale est "Automatically grab analytics from youtube studio to track your A/B testing results. For use with ThumbnailTest.com only.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ThumbnailTest.com Analytics Processor
Téléchargez les fichiers d'extension ThumbnailTest.com Analytics Processor au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | ThumbnailTest.com Analytics Processor |
ID | nngegidkalhoiiiehbfpfmjkeiainija |
URL Officiel | https://chromewebstore.google.com/detail/thumbnailtestcom-analytic/nngegidkalhoiiiehbfpfmjkeiainija |
Description | Automatically grab analytics from youtube studio to track your A/B testing results. For use with ThumbnailTest.com only. |
Taille du Fichier | 123 KB |
Nombre d'Installations | 2,008 |
Version Actuelle | 1.5.2 |
Dernière Mise à Jour | 2024-02-06 |
Date de Publication | 2023-03-01 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | ThumbnailTest |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://thumbnailtest.com |
URL de la Page de Politique de Confidentialité | https://app.thumbnailtest.com/privacy |
Langues Prises en Charge | 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\/*" ] } |