Uniform Context

Uniform Context personalization visualizer and debugger

Что такое Uniform Context?

Uniform Context - это расширение Chrome, разработанное chromex, и его основная функция - "Uniform Context personalization visualizer and debugger".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Uniform Context

Скачайте файлы расширений Uniform Context в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Uniform Context Uniform Context
ID dcmlokofjljnfjcknpmhjocogllfbhkg
Официальный URL https://chromewebstore.google.com/detail/uniform-context/dcmlokofjljnfjcknpmhjocogllfbhkg
Описание Uniform Context personalization visualizer and debugger
Размер файла 585 KB
Количество установок 478
Текущая Версия 4.0.0
Последнее Обновление 2023-11-01
Дата публикации 2021-03-27
Рейтинг 5.00/5 Всего 3 оценок
Разработчик chromex
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://uniform.dev
URL страницы помощи https://docs.uniform.app/docs/guides/classification/context-devtools
URL страницы политики конфиденциальности https://www.uniform.dev/privacy-policy
Поддерживаемые языки 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'"
    }
}