C2PA Content Credentials

Verify and display manifests for images embedding C2PA Content Credentials.

C2PA Content Credentials란 무엇입니까?

C2PA Content Credentials은(는) Digimarc Labs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Verify and display manifests for images embedding C2PA Content Credentials."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

C2PA Content Credentials 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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": [
                ""
            ]
        }
    ]
}