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!

What is Cookie Killer for Facebook?

Cookie Killer for Facebook is a Chrome extension developed by https://georgemike.com, and its main feature is "Keeps Facebook on Facebook.com. When you log out, Facebook cookies are killed so that you aren't tracked as you traverse the web!".

Extension Screenshots

screenshot

Download Cookie Killer for Facebook Extension CRX File

Download Cookie Killer for Facebook extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Cookie Killer for Facebook Cookie Killer for Facebook
ID bgonpegbhnjepleakgjdbaepkfedhhnf
Official URL https://chromewebstore.google.com/detail/cookie-killer-for-faceboo/bgonpegbhnjepleakgjdbaepkfedhhnf
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!
File Size 23.76 KB
Installation Count 10,927
Current Version 2.5
Last Updated 2024-02-05
Publish Date 2020-05-18
Rating 4.04/5 Total 77 Ratings
Developer https://georgemike.com
Email [email protected]
Payment Type free
Extension Website https://georgemike.com
Help Page URL https://georgemike.com
Privacy Policy Page URL https://www.georgemike.com/chrome/privacypolicy
Supported Languages 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}