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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    }
}