Cookie Killer for Facebook

Keeps Facebook on Facebook.com. When you log out, Facebook cookies are killed so that you aren't tracked as you traverse the web!

Cookie Killer for Facebook란 무엇입니까?

Cookie Killer for Facebook은(는) https://georgemike.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Keeps Facebook on Facebook.com. When you log out, Facebook cookies are killed so that you aren't tracked as you traverse the web!"입니다.

확장 프로그램 스크린샷

screenshot

Cookie Killer for Facebook 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension adds a dedicated button to Chrome that when pressed logs you out and removes all of your Facebook (facebook.com) cookies.

As always, I'm excited to hear your feature suggestions or address any bugs found.

Last updated: January 2024                    

확장 프로그램 기본 정보

이름 Cookie Killer for Facebook Cookie Killer for Facebook
ID bgonpegbhnjepleakgjdbaepkfedhhnf
공식 URL https://chromewebstore.google.com/detail/cookie-killer-for-faceboo/bgonpegbhnjepleakgjdbaepkfedhhnf
설명 Keeps Facebook on Facebook.com. When you log out, Facebook cookies are killed so that you aren't tracked as you traverse the web!
파일 크기 23.76 KB
설치 횟수 10,927
현재 버전 2.5
최근 업데이트 2024-02-05
출시 날짜 2020-05-18
평점 4.04/5 총 77 개의 평점
개발자 https://georgemike.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://georgemike.com
도움말 페이지 URL https://georgemike.com
개인정보 보호 정책 페이지 URL https://www.georgemike.com/chrome/privacypolicy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "2.5",
    "name": "Cookie Killer for Facebook",
    "short_name": "Cookie Killer for Facebook",
    "description": "Keeps Facebook on Facebook.com.  When you log out, Facebook cookies are killed so that you aren't tracked as you traverse the web!",
    "background": {
        "service_worker": "js\/background.js"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "action": {
        "default_name": "Remove Facebook Cookies",
        "default_icon": {
            "64": "images\/icon.64.png",
            "128": "images\/icon.128.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "cookies"
    ],
    "host_permissions": [
        "http:\/\/*.facebook.com\/*",
        "https:\/\/*.facebook.com\/*"
    ],
    "icons": {
        "128": "images\/icon.128.png",
        "64": "images\/icon.64.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/icon.128.png",
                "images\/icon.64.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}