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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة سياسة الخصوصية | 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\/*" ] } |