Minimal Consent

Minimal Consent automatically ensures that only functional cookies are dropped and thereby blocks annoying cookie banners.

Minimal Consentคืออะไร?

Minimal Consent เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://minimal-consent.com และคุณลักษณะหลักของมันคือ "Minimal Consent automatically ensures that only functional cookies are dropped and thereby blocks annoying cookie banners."

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Minimal Consent

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

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

                        Since beginning of 2018 GDPR came into play on all websites offered to users living within the European Union. Finally users have full control and transparency on how website providers gather and use their data. Unfortunately users now find huge and annoying cookie banners on all websites. Often a lot of clicks and reading is necessary to deny gathering and usage of their personal data.

Minimal consent is here to help. Minimal Consent answers the cookie banner for users. Only the essential cookies will be accepted. All other cookies such as Tracking and marketing cookies will be denied. Thus minimal consent takes care of users’ data privacy by allowing a seamless browsing experience. All is working that fast so users won’t even see the cookie banner anymore. 

Minimal Consent is already working on a lot of websites and will be constantly enhanced. Missing websites can be sent to the development team of Minimal Consent quickly and easily in order to enhance Minimal Consent accordingly.                    

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

ชื่อ Minimal Consent Minimal Consent
ID neefikeccjlabaelikoghiiknjdbckal
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/minimal-consent/neefikeccjlabaelikoghiiknjdbckal
คำอธิบาย Minimal Consent automatically ensures that only functional cookies are dropped and thereby blocks annoying cookie banners.
ขนาดไฟล์ 115 KB
จำนวนการติดตั้ง 5,602
เวอร์ชันปัจจุบัน 1.0.9
อัปเดตครั้งล่าสุด 2020-06-07
วันที่เผยแพร่ 2020-06-07
คะแนน 3.00/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา https://minimal-consent.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.minimal-consent.com
URL หน้าช่วยเหลือ https://www.minimal-consent.com/faq.html
ภาษาที่รองรับ de,en,fr,es,it,pt-BR,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "__MSG_appShort__",
    "version": "1.0.9",
    "description": "__MSG_appDesc__",
    "manifest_version": 2,
    "default_locale": "en",
    "background": {
        "scripts": [
            ".\/background.js"
        ]
    },
    "icons": {
        "16": ".\/images\/icon-16x16-trans.png",
        "32": ".\/images\/icon-32x32-trans.png",
        "48": ".\/images\/icon-48x48-trans.png",
        "128": ".\/images\/icon-128x128-trans.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/europe-west1-minimal-consent-chrome-ext.cloudfunctions.net\/"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": ".\/images\/icon-16x16-trans.png",
            "32": ".\/images\/icon-32x32-trans.png",
            "48": ".\/images\/icon-48x48-trans.png",
            "128": ".\/images\/icon-128x128-trans.png"
        },
        "default_title": "Minimal Consent",
        "default_popup": ".\/popup\/popup.html"
    },
    "options_ui": {
        "page": ".\/options\/options.html",
        "open_in_tab": true
    }
}