ThumbnailTest.com Analytics Processor

Automatically grab analytics from youtube studio to track your A/B testing results. For use with ThumbnailTest.com only.

What is ThumbnailTest.com Analytics Processor?

ThumbnailTest.com Analytics Processor is a Chrome extension developed by ThumbnailTest, and its main feature is "Automatically grab analytics from youtube studio to track your A/B testing results. For use with ThumbnailTest.com only.".

Extension Screenshots

screenshot

Download ThumbnailTest.com Analytics Processor Extension CRX File

Download ThumbnailTest.com Analytics Processor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name ThumbnailTest.com Analytics Processor ThumbnailTest.com Analytics Processor
ID nngegidkalhoiiiehbfpfmjkeiainija
Official URL https://chromewebstore.google.com/detail/thumbnailtestcom-analytic/nngegidkalhoiiiehbfpfmjkeiainija
Description Automatically grab analytics from youtube studio to track your A/B testing results. For use with ThumbnailTest.com only.
File Size 123 KB
Installation Count 2,008
Current Version 1.5.2
Last Updated 2024-02-06
Publish Date 2023-03-01
Rating 5.00/5 Total 1 Ratings
Developer ThumbnailTest
Email [email protected]
Payment Type free
Extension Website https://thumbnailtest.com
Privacy Policy Page URL https://app.thumbnailtest.com/privacy
Supported Languages 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\/*"
    ]
}