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."입니다.

확장 프로그램 스크린샷

screenshot

ThumbnailTest.com Analytics Processor 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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\/*"
    ]
}