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!

什麼是Cookie Killer for Facebook?

Cookie Killer for Facebook是由https://georgemike.com開發的Chrome擴展程式,該擴展的主要功能是“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

下載Cookie Killer for Facebook擴展crx文件

下載Cookie Killer for Facebook擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Cookie Killer for Facebook Cookie Killer for Facebook
ID bgonpegbhnjepleakgjdbaepkfedhhnf
官方網址 https://chromewebstore.google.com/detail/cookie-killer-for-faceboo/bgonpegbhnjepleakgjdbaepkfedhhnf
簡介 Keeps Facebook on Facebook.com. When you log out, Facebook cookies are killed so that you aren't tracked as you traverse the web!
檔案大小 23.76 KB
安裝次數 10,927
目前版本 2.5
更新時間 2024-02-05
上架時間 2020-05-18
評分 4.04/5 共 77 次評分
開發者 https://georgemike.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://georgemike.com
說明頁面URL https://georgemike.com
隱私政策頁面URL https://www.georgemike.com/chrome/privacypolicy
支援的語言 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}