Disables Chrome's new FLoC (Federated Learning of Cohorts) experiments.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "FLoC Off!",
"description": "Disables Chrome's new FLoC (Federated Learning of Cohorts) experiments.",
"version": "1.0.1",
"minimum_chrome_version": "89",
"author": "Ash Holland",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"all_frames": true,
"run_at": "document_start"
}
],
"web_accessible_resources": [
"injected.js"
],
"browser_action": {
"default_icon": {
"16": "images/icon-dark-16.png",
"48": "images/icon-dark-48.png",
"128": "images/icon-dark-128.png"
}
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"icons": {
"16": "images/webstore-icon-16.png",
"48": "images/webstore-icon-48.png",
"128": "images/webstore-icon-128.png"
}
}