Code Verify

An extension to verify the code running in your browser matches what was published.

什麼是Code Verify?

Code Verify是由Meta開發的Chrome擴展程式,該擴展的主要功能是“An extension to verify the code running in your browser matches what was published.”。

擴展截圖

screenshot
screenshot
screenshot

下載Code Verify擴展crx文件

下載Code Verify擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Overview
An extension to verify that the code running in your browser matches what was published.

VERIFY AUTHENTICITY OF YOUR  CLIENT 
The new Code Verify is an open-source browser extension that lets you verify the authenticity of the WhatsApp, Facebook, Instagram, or Messenger client that you are being served when you use them on the web. Code Verify will immediately alert you if your web version is inauthentic or has been modified. 

NEED FOR WEB TRANSPARENCY
Mobile phones have security verification protocols in place to ensure that the client you’re downloading is authentic and hasn’t been modified. Unfortunately, those assurances haven’t existed for web-based implementations of apps (those that run on web browsers). Code Verify was created as a solution. 

When people use messaging apps via the web, they’re being served Javascript rather than a binary application. This means it's technically possible to serve people a different experience than what they were expecting.

We know that bad actors may want to alter an app and distribute that app to unsuspecting targets. For example, a bad actor could serve someone a version that was created to spy on them – without them ever knowing the difference. 

DESIGNED FOR SECURITY-CONSCIOUS USERS 
Code Verify was designed with our most security-conscious users in mind —  those who might want additional peace of mind about their message security. Millions of people use WhatsApp, Facebook, Instagram, and Messenger on the web each month, and this type of independent verification and redundancy (also known as binary transparency) on the web is a huge step forward for online privacy.

HOW DOES IT WORK? 
We've partnered with Cloudflare, a secure web content delivery service, to enable us to verify that everyone using WhatsApp, Facebook, Instagram, and Messenger on the web is accessing the same code, and we built a browser extension for you to independently verify that's the case.
The Code Verify browser extension brings the same protections that mobile apps have to the web. The extension scans the Javascript code of the web-based app and ensures it matches the source of truth that has been publicly posted on Cloudflare. If there are inconsistencies, the extension will immediately alert you. 
When the WhatsApp, Facebook, Instagram, or Messenger clients are updated, the extension will also automatically update with a new source of truth so people are continuously assured that the version they’re running is the same version that other users are running. 

BENEFITS OF OPEN SOURCING
We’re not just doing this for WhatsApp, Facebook, Instagram, and Messenger. Open sourcing the Code Verify extension means that other companies will be able to apply web binary transparency to their web-based apps as well. 
As a browser extension that is independent of Meta products and their infrastructure, people can be assured that the extension itself hasn’t been secretly modified by third parties. Since the extension exists in the public eye, it will be more difficult to modify it for any sort of nefarious purpose without people noticing.
Now you can have the power of transparency directly in your hands. 
Use the Code Verify extension to provide confidence that the web app you’re using is authentic. 
Learn more about Code Verify at https://faq.whatsapp.com/web/security-and-privacy/about-code-verify
https://www.facebook.com/help/728172628487328
https://www.messenger.com/help/799550494558955
By downloading or using this extension, you agree to Meta’s terms of service available at https://www.facebook.com/terms.php. Learn how your data is processed for this extension by visiting the Meta Data Policy: https://www.facebook.com/about/privacy/.                    

擴展基本資訊

名稱 Code Verify Code Verify
ID llohflklppcaghdpehpbklhlfebooeog
官方網址 https://chromewebstore.google.com/detail/code-verify/llohflklppcaghdpehpbklhlfebooeog
簡介 An extension to verify the code running in your browser matches what was published.
檔案大小 122 KB
安裝次數 20,000
目前版本 3.4.0
更新時間 2024-02-05
上架時間 2022-03-10
評分 2.04/5 共 25 次評分
開發者 Meta
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Code Verify",
    "version": "3.4.0",
    "default_locale": "en",
    "description": "An extension to verify the code running in your browser matches what was published.",
    "action": {
        "default_title": "Code Verify",
        "default_icon": {
            "32": "default_32.png",
            "64": "default_64.png",
            "128": "[email protected]"
        }
    },
    "icons": {
        "32": "default_32.png",
        "64": "default_64.png",
        "128": "[email protected]"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.messenger.com\/*"
            ],
            "all_frames": true,
            "js": [
                "contentMSGR.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "all_frames": true,
            "match_about_blank": true,
            "js": [
                "contentFB.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.instagram.com\/*"
            ],
            "all_frames": true,
            "match_about_blank": true,
            "js": [
                "contentIG.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.whatsapp.com\/*"
            ],
            "all_frames": true,
            "match_about_blank": true,
            "exclude_matches": [
                "*:\/\/www.whatsapp.com\/",
                "*:\/\/*.whatsapp.com\/bt-manifest\/*",
                "*:\/\/faq.whatsapp.com\/*"
            ],
            "js": [
                "contentWA.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "webRequest"
    ],
    "host_permissions": [
        "https:\/\/*.privacy-auditability.cloudflare.com\/",
        "https:\/\/static.xx.fbcdn.net\/",
        "https:\/\/static.cdninstagram.com\/",
        "*:\/\/*.messenger.com\/*",
        "*:\/\/*.facebook.com\/*",
        "*:\/\/*.instagram.com\/*",
        "*:\/\/*.whatsapp.com\/*"
    ]
}