Remove Cookie Banners

Get rid of annoying notification banners on websites.

Remove Cookie Bannersคืออะไร?

Remove Cookie Banners เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ceni Apps และคุณลักษณะหลักของมันคือ "Get rid of annoying notification banners on websites."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Remove Cookie Banners

ดาวน์โหลดไฟล์ส่วนขยาย Remove Cookie Banners ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Hide those obnoxious cookie notification banners!

Everyone knows what cookies are, so why do most websites demand that we see a cookie notification banner? This extension will hide them so you can browse the web in peace.  GDPR or CCPA?  Ban those banners!

It also hides other annoying notification banners, such as full-page email signup windows that popup on top of the page content.  Super annoying!

If you use an ad-blocker, this extension will even hide many of those annoying "Please disable your adblocker on our page" notifications that hide the content.

After installing Remove Cookie Banners, you'll finally have a peaceful web browsing experience where you can focus on the content, not annoying and useless notifications covering the content you're trying to read.

The extension can easily be disabled on a per-site basis in case anything goes wrong (and the setting will be remembered in future visits).  Temporarily disabling it will also let you see what obnoxious notifications were hidden by the extension... no reload necessary.

Just click "Add to Chrome," then visit your favorite website and notice how clean and peaceful the web is again!


NOTE:
* Google Chrome may show you a notice about this extension being able to access website data. This is automatically generated because Remove Cookie Banners analyzes the HTML source to intelligently hide notification banners. It does not monitor or save your browsing history or personal information.
* You may also see a warning that this extension can see your browsing history.  This is because the extension needs to access all your open tabs when you update the extension so changes take effect immediately.  This extension does not save, monitor or use your browsing history.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Remove Cookie Banners Remove Cookie Banners
ID pacehjmodmfilemfbcahnpdcdmlocjnm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/remove-cookie-banners/pacehjmodmfilemfbcahnpdcdmlocjnm
คำอธิบาย Get rid of annoying notification banners on websites.
ขนาดไฟล์ 210 KB
จำนวนการติดตั้ง 3,444
เวอร์ชันปัจจุบัน 3.70
อัปเดตครั้งล่าสุด 2022-05-25
วันที่เผยแพร่ 2020-06-13
คะแนน 3.03/5 รวมทั้งหมด 29 คะแนน
ผู้พัฒนา Ceni Apps
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Remove Cookie Banners",
    "version": "3.70",
    "manifest_version": 2,
    "icons": {
        "16": "cookie-16.png",
        "32": "cookie-32.png",
        "48": "cookie-48.png",
        "64": "cookie-64.png",
        "128": "cookie-128.png"
    },
    "author": "Ceni Apps",
    "description": "Get rid of annoying notification banners on websites.",
    "content_security_policy": "script-src 'self' https:\/\/www.googletagmanager.com https:\/\/www.google-analytics.com https:\/\/ssl.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "activeTab",
        "tabs"
    ]
}