FLoC Block

Block FLoC ad-targeting code on Chrome

FLoC Block क्या है?

FLoC Block Shivan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Block FLoC ad-targeting code on Chrome"।

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

screenshot
screenshot

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

crx प्रारूप में FLoC Block एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}