Uniform Context

Uniform Context personalization visualizer and debugger

Hvad er Uniform Context?

Uniform Context er en Chrome-udvidelse udviklet af chromex, og dens hovedfunktion er "Uniform Context personalization visualizer and debugger".

Udvidelsesskærmbilleder

screenshot

Download Uniform Context-udvidelses-CRX-fil

Download Uniform Context-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        The Uniform Context extension allows you to visualize and manipulate personalization on sites that run Uniform Context or Uniform Optimize. With this extension you can view and manipulate visitor scores and quirks to test personalization scenarios in real time and view diagnostic logs to see exactly what Context is doing.                    

Grundlæggende oplysninger om udvidelsen

Navn Uniform Context Uniform Context
ID dcmlokofjljnfjcknpmhjocogllfbhkg
Officiel URL https://chromewebstore.google.com/detail/uniform-context/dcmlokofjljnfjcknpmhjocogllfbhkg
Beskrivelse Uniform Context personalization visualizer and debugger
Filstørrelse 585 KB
Antal Installationer 478
Nuværende Version 4.0.0
Senest Opdateret 2023-11-01
Udgivelsesdato 2021-03-27
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler chromex
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://uniform.dev
Hjælpeside-URL https://docs.uniform.app/docs/guides/classification/context-devtools
URL til Fortrolighedspolitik Side https://www.uniform.dev/privacy-policy
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Uniform Context",
    "version": "4.0.0",
    "description": "Uniform Context personalization visualizer and debugger",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "\/icons\/uniform-logo.png",
        "48": "\/icons\/uniform-logo.png",
        "128": "\/icons\/uniform-logo.png"
    },
    "action": {
        "default_popup": "no-uniform.html",
        "default_title": "Uniform Context",
        "default_icon": {
            "16": "\/icons\/uniform-logo-gray.png",
            "48": "\/icons\/uniform-logo-gray.png",
            "128": "\/icons\/uniform-logo-gray.png"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/icons\/uniform-logo-gray.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        },
        {
            "resources": [
                "\/icons\/uniform-logo.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "manifest_version": 3,
    "background": {
        "service_worker": "plugin\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_globs": [
                "https:\/\/www.google*"
            ],
            "js": [
                "plugin\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}