Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"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": {
"64": "images\/icon.64.png",
"128": "images\/icon.128.png"
},
"web_accessible_resources": [
{
"resources": [
"images\/icon.128.png",
"images\/icon.64.png"
],
"matches": [
"*:\/\/*\/*"
]
}
]
}