Fuzzify.me
Cleans out a Facebook user's ad preferences and provides a stream of ads that user receives
什麼是Fuzzify.me?
Fuzzify.me是由d4t4x開發的Chrome擴展程式,該擴展的主要功能是“Cleans out a Facebook user's ad preferences and provides a stream of ads that user receives”。
擴展截圖
下載Fuzzify.me擴展crx文件
下載Fuzzify.me擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | Fuzzify.me |
ID | opmgpilmngmgnemoldpekbjegnfjefcp |
官方網址 | https://chromewebstore.google.com/detail/fuzzifyme/opmgpilmngmgnemoldpekbjegnfjefcp |
簡介 | Cleans out a Facebook user's ad preferences and provides a stream of ads that user receives |
檔案大小 | 662 KB |
安裝次數 | 457 |
目前版本 | 1.1.3 |
更新時間 | 2018-08-15 |
上架時間 | 2018-08-15 |
評分 | 2.80/5 共 5 次評分 |
開發者 | d4t4x |
付費類型 | free |
擴展官網 | https://github.com/d4t4x/facebook-cleaner |
說明頁面URL | https://github.com/d4t4x/facebook-cleaner/blob/master/FAQ.md |
支援的語言 | 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 } |