Uniform Context

Uniform Context personalization visualizer and debugger

Was ist Uniform Context?

Uniform Context ist eine Chrome-Erweiterung, die von chromex entwickelt wurde, und ihr Hauptmerkmal ist "Uniform Context personalization visualizer and debugger".

Erweiterungsscreenshots

screenshot

Uniform Context-Erweiterungs-CRX-Datei herunterladen

Laden Sie Uniform Context-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Uniform Context Uniform Context
ID dcmlokofjljnfjcknpmhjocogllfbhkg
Offizielle URL https://chromewebstore.google.com/detail/uniform-context/dcmlokofjljnfjcknpmhjocogllfbhkg
Beschreibung Uniform Context personalization visualizer and debugger
Dateigröße 585 KB
Installationsanzahl 478
Aktuelle Version 4.0.0
Letztes Update 2023-11-01
Veröffentlichungsdatum 2021-03-27
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler chromex
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://uniform.dev
Hilfeseite URL https://docs.uniform.app/docs/guides/classification/context-devtools
URL der Datenschutzrichtlinien-Seite https://www.uniform.dev/privacy-policy
Unterstützte Sprachen 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'"
    }
}