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"입니다.

확장 프로그램 스크린샷

screenshot

Fuzzify.me 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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
}