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!
Apa itu Cookie Killer for Facebook?
Cookie Killer for Facebook adalah ekstensi Chrome yang dikembangkan oleh https://georgemike.com, dan fitur utamanya adalah "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 Ekstensi
Unduh Berkas CRX Ekstensi Cookie Killer for Facebook
Unduh file ekstensi Cookie Killer for Facebook dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Cookie Killer for Facebook |
ID | bgonpegbhnjepleakgjdbaepkfedhhnf |
URL Resmi | https://chromewebstore.google.com/detail/cookie-killer-for-faceboo/bgonpegbhnjepleakgjdbaepkfedhhnf |
Deskripsi | Keeps Facebook on Facebook.com. When you log out, Facebook cookies are killed so that you aren't tracked as you traverse the web! |
Ukuran File | 23.76 KB |
Jumlah Instalasi | 10,927 |
Versi Saat Ini | 2.5 |
Terakhir Diperbarui | 2024-02-05 |
Tanggal Publikasi | 2020-05-18 |
Penilaian | 4.04/5 Total 77 Penilaian |
Pengembang | https://georgemike.com |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://georgemike.com |
URL Halaman Bantuan | https://georgemike.com |
URL Halaman Kebijakan Privasi | https://www.georgemike.com/chrome/privacypolicy |
Bahasa yang Didukung | 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": [ "*:\/\/*\/*" ] } ] } |