FLoC Block

Block FLoC ad-targeting code on Chrome

什麼是FLoC Block?

FLoC Block是由Shivan開發的Chrome擴展程式,該擴展的主要功能是“Block FLoC ad-targeting code on Chrome”。

擴展截圖

screenshot
screenshot

下載FLoC Block擴展crx文件

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

擴展使用說明

                        FLoC, short for Federated Learning of Cohorts, is the new algorithm used by Google Chrome to group users into buckets based on their interests. You can read more about it here: https://web.dev/floc, and why Brave and some other browsers have blocked it here: https://brave.com/why-brave-disables-floc/. 

If you HAVE to use Chrome, this extension is a simple way to prevent FLoC from divulging your "cohort id" to websites. You can also consider using DuckDuckGo's extension for this plus other privacy protections: https://spreadprivacy.com/block-floc-with-duckduckgo.

The extension inserts a script on every page load that removes the FLoC API (document.interestCohort()) so if a website tries to call that function, it will get an error. This is also unfortunately why the FLoC Block extension needs permission for all websites. However, it's completely open source so you can see what it's doing here: https://github.com/shivankaul/flocblock. I've included instructions on how to install from source. 

Icons credit: https://www.freepik.com from https://www.flaticon.com                    

擴展基本資訊

名稱 FLoC Block FLoC Block
ID amoljnglfkpjdjhmeaocffefmhppmane
官方網址 https://chromewebstore.google.com/detail/floc-block/amoljnglfkpjdjhmeaocffefmhppmane
簡介 Block FLoC ad-targeting code on Chrome
檔案大小 15.5 KB
安裝次數 168
目前版本 0.0.2
更新時間 2021-04-20
上架時間 2021-04-19
評分 5.00/5 共 1 次評分
開發者 Shivan
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/shivankaul/flocblock
說明頁面URL https://github.com/shivankaul/flocblock
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "FLoC Block",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "Block FLoC ad-targeting code on Chrome",
    "content_scripts": [
        {
            "js": [
                "dist\/inject.js"
            ],
            "run_at": "document_start",
            "matches": [
                ""
            ]
        }
    ],
    "web_accessible_resources": [
        "dist\/flocblock.js"
    ],
    "icons": {
        "16": "assets\/icon-16.png",
        "24": "assets\/icon-24.png",
        "32": "assets\/icon-32.png",
        "64": "assets\/icon-64.png",
        "128": "assets\/icon-128.png"
    }
}