Uniform Context

Uniform Context personalization visualizer and debugger

Uniform Context là gì?

Uniform Context là một tiện ích mở rộng Chrome được phát triển bởi chromex, và tính năng chính của nó là "Uniform Context personalization visualizer and debugger".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Uniform Context

Tải xuống các tệp mở rộng Uniform Context dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Uniform Context Uniform Context
ID dcmlokofjljnfjcknpmhjocogllfbhkg
URL Chính Thức https://chromewebstore.google.com/detail/uniform-context/dcmlokofjljnfjcknpmhjocogllfbhkg
Mô tả Uniform Context personalization visualizer and debugger
Kích Thước Tệp 585 KB
Số Lần Cài Đặt 478
Phiên Bản Hiện Tại 4.0.0
Cập Nhật Lần Cuối 2023-11-01
Ngày Phát Hành 2021-03-27
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển chromex
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://uniform.dev
URL Trang Trợ Giúp https://docs.uniform.app/docs/guides/classification/context-devtools
URL Trang Chính Sách Bảo Mật https://www.uniform.dev/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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'"
    }
}