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!
Co to jest Cookie Killer for Facebook?
Cookie Killer for Facebook to rozszerzenie Chrome opracowane przez https://georgemike.com, a jego główną funkcją jest „Keeps Facebook on Facebook.com. When you log out, Facebook cookies are killed so that you aren't tracked as you traverse the web!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Cookie Killer for Facebook
Pobierz pliki rozszerzeń Cookie Killer for Facebook w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Cookie Killer for Facebook |
ID | bgonpegbhnjepleakgjdbaepkfedhhnf |
Oficjalny URL | https://chromewebstore.google.com/detail/cookie-killer-for-faceboo/bgonpegbhnjepleakgjdbaepkfedhhnf |
Opis | Keeps Facebook on Facebook.com. When you log out, Facebook cookies are killed so that you aren't tracked as you traverse the web! |
Rozmiar pliku | 23.76 KB |
Liczba instalacji | 10,927 |
Aktualna Wersja | 2.5 |
Ostatnia Aktualizacja | 2024-02-05 |
Data Publikacji | 2020-05-18 |
Ocena | 4.04/5 Łącznie 77 Oceny |
Deweloper | https://georgemike.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://georgemike.com |
Adres URL Strony Pomocy | https://georgemike.com |
Adres URL Strony Polityki Prywatności | https://www.georgemike.com/chrome/privacypolicy |
Obsługiwane Języki | 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": [ "*:\/\/*\/*" ] } ] } |