Fuzzify.me
Cleans out a Facebook user's ad preferences and provides a stream of ads that user receives
Fuzzify.me क्या है?
Fuzzify.me d4t4x द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Cleans out a Facebook user's ad preferences and provides a stream of ads that user receives"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Fuzzify.me एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
आधिकारिक URL | 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 } |