Disable cookies - auto disable popup cookies

This extension click for you on "Just functional cookies" button

Vad är Disable cookies - auto disable popup cookies?

Disable cookies - auto disable popup cookies är en Chrome-tillägg utvecklad av Hugo Levet, och dess huvudfunktion är "This extension click for you on "Just functional cookies" button".

Tilläggsskärmbilder

screenshot

Ladda ner Disable cookies - auto disable popup cookies-förlängningens CRX-fil

Ladda ner Disable cookies - auto disable popup cookies-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        When you arrive on a website you should uncheck cookies approbation. It's very boring and it takes time. This extension do the dirty work for you:
- It clicks on uncheck button
- It removes cookies information's popup                    

Grundläggande Information om Tillägg

Namn Disable cookies - auto disable popup cookies Disable cookies - auto disable popup cookies
ID icifceekaomdahfoiipifbhbkgbnmicj
Officiell webbadress https://chromewebstore.google.com/detail/disable-cookies-auto-disa/icifceekaomdahfoiipifbhbkgbnmicj
Beskrivning This extension click for you on "Just functional cookies" button
Filstorlek 17.6 KB
Antal Installationer 666
Aktuell Version 2.3.0
Senast Uppdaterad 2021-09-29
Publiceringsdatum 2021-04-14
Betyg 3.00/5 Totalt 4 Betyg
Utvecklare Hugo Levet
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://hugolevet.fr/p/disable-cookies-privacy.html
Stödda Språk de,en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2.3.0",
    "name": "__MSG_extensionFullTitle__",
    "description": "__MSG_description__",
    "default_locale": "en",
    "icons": {
        "128": "128.png"
    },
    "offline_enabled": true,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_title": "__MSG_extensionFullTitle__",
        "default_popup": "index.html"
    },
    "permissions": [
        "storage"
    ]
}