Uniform Context

Uniform Context personalization visualizer and debugger

Uniform Context क्या है?

Uniform Context chromex द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Uniform Context personalization visualizer and debugger"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Uniform Context एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ 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'"
    }
}