Cookies Blocker
This extension hides the "accept cookies?" popup when you visit a website. Because of course, you always accept...
Hvad er Cookies Blocker?
Cookies Blocker er en Chrome-udvidelse udviklet af https://k-legrand.com, og dens hovedfunktion er "This extension hides the "accept cookies?" popup when you visit a website. Because of course, you always accept...".
Download Cookies Blocker-udvidelses-CRX-fil
Download Cookies Blocker-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | dafambnlnkbfdkieoeaccchlmahiolof |
| Officiel URL | https://chromewebstore.google.com/detail/cookies-blocker/dafambnlnkbfdkieoeaccchlmahiolof |
| Beskrivelse | This extension hides the "accept cookies?" popup when you visit a website. Because of course, you always accept... |
| Filstørrelse | 47.74 KB |
| Antal Installationer | 1,052 |
| Nuværende Version | 1.2 |
| Senest Opdateret | 2018-08-14 |
| Udgivelsesdato | 2018-08-14 |
| Bedømmelse | 3.69/5 Samlet 13 Bedømmelser |
| Udvikler | https://k-legrand.com |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/Manoz/Cookies-F-cker |
| Hjælpeside-URL | https://github.com/Manoz/Cookies-F-cker/issues |
| Understøttede Sprog | 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"
]
} | |