C2PA Content Credentials

Verify and display manifests for images embedding C2PA Content Credentials.

C2PA Content Credentials क्या है?

C2PA Content Credentials Digimarc Labs द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Verify and display manifests for images embedding C2PA Content Credentials."।

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

screenshot
screenshot
screenshot

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

crx प्रारूप में C2PA Content Credentials एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Content Credentials adds machine-readable and verifiable manifests to online assets to track the origin and history of online assets using the C2PA standard.
This extension automatically checks for manifests attached to images on the pages you are browsing. If an image has a manifest, the extension will validate it and make the results available via a click on the Content Credentials “CR” pin icon.

Features:
- Right click on an image and select `Verify Content Credentials` to trigger the verification.
- Or toggle on or off the automatic detection of images with manifests.
- Validates manifest when present and adds a "CR" pin to the image.
- Hovering the "CR" pin displays a summary of the manifest in a pop up                    

एक्सटेंशन की मूल जानकारी

नाम C2PA Content Credentials C2PA Content Credentials
ID mjkaocdlpjmphfkjndocehcdhbigaafp
आधिकारिक URL https://chromewebstore.google.com/detail/c2pa-content-credentials/mjkaocdlpjmphfkjndocehcdhbigaafp
विवरण Verify and display manifests for images embedding C2PA Content Credentials.
फ़ाइल का आकार 24.03 MB
स्थापना संख्या 201
वर्तमान संस्करण 0.0.3
अंतिम अपडेट 2024-01-23
प्रकाशन तिथि 2023-12-07
डेवलपर Digimarc Labs
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.digimarc.com/products/digital-content-authentication
सहायता पृष्ठ URL https://github.com/digimarc-corp/c2pa-content-credentials-extension/issues
गोपनीयता नीति पृष्ठ URL https://www.digimarc.com/legal/privacy-policy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "C2PA Content Credentials",
    "version": "0.0.3",
    "description": "Verify and display manifests for images embedding C2PA Content Credentials.",
    "icons": {
        "16": "images\/icons\/icon.png",
        "32": "images\/icons\/icon.png",
        "48": "images\/icons\/icon.png",
        "128": "images\/icons\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/node_modules\/@webcomponents\/webcomponentsjs\/webcomponents-bundle.js",
                "contentScript.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "images\/icons\/icon.png"
    },
    "permissions": [
        "tabs",
        "scripting",
        "storage",
        "contextMenus"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "sandbox": {
        "pages": [
            "sandbox.html"
        ]
    },
    "content_security_policy": {
        "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self'; worker-src 'self' blob: chrome-extension:;"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "sandbox.html",
                "*.js",
                "c2pa\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}