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!

Vad är Cookie Killer for Facebook?

Cookie Killer for Facebook är en Chrome-tillägg utvecklad av https://georgemike.com, och dess huvudfunktion är "Keeps Facebook on Facebook.com. When you log out, Facebook cookies are killed so that you aren't tracked as you traverse the web!".

Tilläggsskärmbilder

screenshot

Ladda ner Cookie Killer for Facebook-förlängningens CRX-fil

Ladda ner Cookie Killer for Facebook-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Cookie Killer for Facebook Cookie Killer for Facebook
ID bgonpegbhnjepleakgjdbaepkfedhhnf
Officiell webbadress https://chromewebstore.google.com/detail/cookie-killer-for-faceboo/bgonpegbhnjepleakgjdbaepkfedhhnf
Beskrivning Keeps Facebook on Facebook.com. When you log out, Facebook cookies are killed so that you aren't tracked as you traverse the web!
Filstorlek 23.76 KB
Antal Installationer 10,927
Aktuell Version 2.5
Senast Uppdaterad 2024-02-05
Publiceringsdatum 2020-05-18
Betyg 4.04/5 Totalt 77 Betyg
Utvecklare https://georgemike.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://georgemike.com
Hjälpsida URL https://georgemike.com
URL till Sekretesspolicy Sidan https://www.georgemike.com/chrome/privacypolicy
Stödda Språk 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}