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是由ThumbnailTest開發的Chrome擴展程式,該擴展的主要功能是“Automatically grab analytics from youtube studio to track your A/B testing results. For use with ThumbnailTest.com only.”。
擴展截圖
下載ThumbnailTest.com Analytics Processor擴展crx文件
下載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 |
官方網址 | 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\/*" ] } |