ThumbnailTest.com Analytics Processor

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

Vad är ThumbnailTest.com Analytics Processor?

ThumbnailTest.com Analytics Processor är en Chrome-tillägg utvecklad av ThumbnailTest, och dess huvudfunktion är "Automatically grab analytics from youtube studio to track your A/B testing results. For use with ThumbnailTest.com only.".

Tilläggsskärmbilder

screenshot

Ladda ner ThumbnailTest.com Analytics Processor-förlängningens CRX-fil

Ladda ner ThumbnailTest.com Analytics Processor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn ThumbnailTest.com Analytics Processor ThumbnailTest.com Analytics Processor
ID nngegidkalhoiiiehbfpfmjkeiainija
Officiell webbadress https://chromewebstore.google.com/detail/thumbnailtestcom-analytic/nngegidkalhoiiiehbfpfmjkeiainija
Beskrivning Automatically grab analytics from youtube studio to track your A/B testing results. For use with ThumbnailTest.com only.
Filstorlek 123 KB
Antal Installationer 2,008
Aktuell Version 1.5.2
Senast Uppdaterad 2024-02-06
Publiceringsdatum 2023-03-01
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare ThumbnailTest
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://thumbnailtest.com
URL till Sekretesspolicy Sidan https://app.thumbnailtest.com/privacy
Stödda Språk 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\/*"
    ]
}