Cookies Blocker
This extension hides the "accept cookies?" popup when you visit a website. Because of course, you always accept...
Was ist Cookies Blocker?
Cookies Blocker ist eine Chrome-Erweiterung, die von https://k-legrand.com entwickelt wurde, und ihr Hauptmerkmal ist "This extension hides the "accept cookies?" popup when you visit a website. Because of course, you always accept...".
Cookies Blocker-Erweiterungs-CRX-Datei herunterladen
Laden Sie Cookies Blocker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension hides the "accept cookies?" popup when you visit a website. Because of course, you always accept...
Keep in mind that this app does not accept cookies for you. It just hides sh*t tones of css rules.
Github: https://github.com/Manoz/Cookies-F-cker Grundlegende Informationen zur Erweiterung
| Name | |
| ID | dafambnlnkbfdkieoeaccchlmahiolof |
| Offizielle URL | https://chromewebstore.google.com/detail/cookies-blocker/dafambnlnkbfdkieoeaccchlmahiolof |
| Beschreibung | This extension hides the "accept cookies?" popup when you visit a website. Because of course, you always accept... |
| Dateigröße | 47.74 KB |
| Installationsanzahl | 1,052 |
| Aktuelle Version | 1.2 |
| Letztes Update | 2018-08-14 |
| Veröffentlichungsdatum | 2018-08-14 |
| Bewertung | 3.69/5 Insgesamt 13 Bewertungen |
| Entwickler | https://k-legrand.com |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/Manoz/Cookies-F-cker |
| Hilfeseite URL | https://github.com/Manoz/Cookies-F-cker/issues |
| Unterstützte Sprachen | en,fr |
| manifest.json | |
{
"author": "Manoz",
"name": "__MSG_extName__",
"short_name": "CBlocker",
"description": "__MSG_extDescription__",
"version": "1.2",
"manifest_version": 2,
"default_locale": "en",
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"browser_action": {
"default_icon": {
"16": "images\/icon-16.png",
"32": "images\/icon-32.png",
"48": "images\/icon-48.png",
"128": "images\/icon-128.png"
},
"default_popup": "popup.html",
"default_title": "Let's block cookies!"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*"
],
"css": [
"style.css"
]
}
],
"icons": {
"16": "images\/icon-16.png",
"32": "images\/icon-32.png",
"48": "images\/icon-48.png",
"128": "images\/icon-128.png"
},
"permissions": [
"activeTab"
]
} | |