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. 扩展基本信息
| 名称 | |
| 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\/*"
]
} | |