ThumbnailTest.com Analytics Processor
Automatically grab analytics from youtube studio to track your A/B testing results. For use with ThumbnailTest.com only.
Что такое ThumbnailTest.com Analytics Processor?
ThumbnailTest.com Analytics Processor - это расширение Chrome, разработанное ThumbnailTest, и его основная функция - "Automatically grab analytics from youtube studio to track your A/B testing results. For use with ThumbnailTest.com only.".
Снимки экрана расширения
Скачать файл CRX расширения ThumbnailTest.com Analytics Processor
Скачайте файлы расширений ThumbnailTest.com Analytics Processor в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | ThumbnailTest.com Analytics Processor |
ID | nngegidkalhoiiiehbfpfmjkeiainija |
Официальный URL | https://chromewebstore.google.com/detail/thumbnailtestcom-analytic/nngegidkalhoiiiehbfpfmjkeiainija |
Описание | Automatically grab analytics from youtube studio to track your A/B testing results. For use with ThumbnailTest.com only. |
Размер файла | 123 KB |
Количество установок | 2,008 |
Текущая Версия | 1.5.2 |
Последнее Обновление | 2024-02-06 |
Дата публикации | 2023-03-01 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | ThumbnailTest |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://thumbnailtest.com |
URL страницы политики конфиденциальности | https://app.thumbnailtest.com/privacy |
Поддерживаемые языки | 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\/*" ] } |