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 |
| Eメール | [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\/*"
]
} | |