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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://docs.uniform.app/docs/guides/classification/context-devtools
عنوان صفحة سياسة الخصوصية 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'"
    }
}