Fuzzify.me
Cleans out a Facebook user's ad preferences and provides a stream of ads that user receives
Fuzzify.me là gì?
Fuzzify.me là một tiện ích mở rộng Chrome được phát triển bởi d4t4x, và tính năng chính của nó là "Cleans out a Facebook user's ad preferences and provides a stream of ads that user receives".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Fuzzify.me
Tải xuống các tệp mở rộng Fuzzify.me dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
A browser extension that helps you understand how advertisers target you on Facebook. With one click, the tool automatically runs a housecleaning, denying advertisers access to all the categories Facebook is constantly generating about you. In the Ads Stream you can keep track of what categories have been cleared out and what targeted ads you're seeing over time. Built for both Chrome & Firefox. FAQ: https://github.com/d4t4x/facebook-cleaner/blob/master/FAQ.md Privacy Policy: https://github.com/d4t4x/facebook-cleaner/blob/master/PRIVACY_POLICY.md Open Source Code: https://github.com/d4t4x/facebook-cleaner
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Fuzzify.me |
ID | opmgpilmngmgnemoldpekbjegnfjefcp |
URL Chính Thức | https://chromewebstore.google.com/detail/fuzzifyme/opmgpilmngmgnemoldpekbjegnfjefcp |
Mô tả | Cleans out a Facebook user's ad preferences and provides a stream of ads that user receives |
Kích Thước Tệp | 662 KB |
Số Lần Cài Đặt | 457 |
Phiên Bản Hiện Tại | 1.1.3 |
Cập Nhật Lần Cuối | 2018-08-15 |
Ngày Phát Hành | 2018-08-15 |
Đánh Giá | 2.80/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | d4t4x |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/d4t4x/facebook-cleaner |
URL Trang Trợ Giúp | https://github.com/d4t4x/facebook-cleaner/blob/master/FAQ.md |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Fuzzify.me", "version": "1.1.3", "description": "Cleans out a Facebook user's ad preferences and provides a stream of ads that user receives", "background": { "scripts": [ "js\/background.js" ] }, "browser_action": { "default_icon": "media\/48.png", "default_title": "Fuzzify.me" }, "permissions": [ "storage", "webRequest", "alarms", "*:\/\/*.facebook.com\/*" ], "icons": { "128": "media\/128.png", "16": "media\/16.png", "48": "media\/48.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.facebook.com\/ads\/preferences", "http:\/\/www.facebook.com\/ads\/preferences" ], "js": [ "js\/clean.js" ], "css": [ "css\/ads-overlay.css" ], "run_at": "document_idle" }, { "exclude_matches": [ "https:\/\/www.facebook.com\/ads\/preferences", "http:\/\/www.facebook.com\/ads\/preferences" ], "matches": [ "*:\/\/*.facebook.com\/*" ], "js": [ "js\/content.js" ], "css": [ "css\/feed-overlay.css" ], "run_at": "document_idle" } ], "options_ui": { "page": "views\/options.html" }, "homepage_url": "https:\/\/github.com\/d4t4x\/facebook-cleaner", "manifest_version": 2 } |