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!

Cos'è Cookie Killer for Facebook?

Cookie Killer for Facebook è un'estensione di Chrome sviluppata da https://georgemike.com, e la sua funzione principale è "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 dell'Estensione

screenshot

Scarica il file CRX dell'estensione Cookie Killer for Facebook

Scarica i file di estensione Cookie Killer for Facebook in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Cookie Killer for Facebook Cookie Killer for Facebook
ID bgonpegbhnjepleakgjdbaepkfedhhnf
URL Ufficiale https://chromewebstore.google.com/detail/cookie-killer-for-faceboo/bgonpegbhnjepleakgjdbaepkfedhhnf
Descrizione Keeps Facebook on Facebook.com. When you log out, Facebook cookies are killed so that you aren't tracked as you traverse the web!
Dimensione del File 23.76 KB
Conteggio Installazioni 10,927
Versione Corrente 2.5
Ultimo Aggiornamento 2024-02-05
Data di Pubblicazione 2020-05-18
Valutazione 4.04/5 Totale 77 Valutazioni
Sviluppatore https://georgemike.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://georgemike.com
URL della Pagina di Aiuto https://georgemike.com
URL della Pagina della Politica sulla Privacy https://www.georgemike.com/chrome/privacypolicy
Lingue Supportate 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}