Fuzzify.me

Cleans out a Facebook user's ad preferences and provides a stream of ads that user receives

Fuzzify.meคืออะไร?

Fuzzify.me เป็นส่วนขยายของ Chrome ที่พัฒนาโดย d4t4x และคุณลักษณะหลักของมันคือ "Cleans out a Facebook user's ad preferences and provides a stream of ads that user receives"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fuzzify.me

ดาวน์โหลดไฟล์ส่วนขยาย 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 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
}