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'"
    }
}