Adblocker for Chrome

Blocks all ads including facebook ads, youtube video ads, display ads etc.

Wat is Adblocker for Chrome?

Adblocker for Chrome is een Chrome-extensie ontwikkeld door cooldev, en de belangrijkste functie is "Blocks all ads including facebook ads, youtube video ads, display ads etc.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Adblocker for Chrome

Download Adblocker for Chrome-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Ad Blocker for Chrome blocks all kind of ads on most of the sites. It improves your browsing experience and gives you a premium browsing without ads.

ADS THAT ARE BLOCKED
1. Display ads on ALL SITES
2. Search ads on GOOGLE and BING
3. Blocks video ads on YOUTUBE
4. Blocks ads and sponsored ads on FACEBOOK
5. etc

# Saves your Time !!
# Light Weight !!
# Super easy to Use !!

Updates:
0.2 - fixed adblocker On and Off bug.
0.3 - updated selectors and reddit ads blocking
0.4 - updated blocking selectors 
1.1 - added few more ads to block
1.3 - new blocking domains added                    

Basisinformatie over de Extensie

Naam Adblocker for Chrome Adblocker for Chrome
ID pklhpcljkikhjpdjldmbhadminneaihj
Officiële URL https://chrome.google.com/webstore/detail/adblocker-for-chrome/pklhpcljkikhjpdjldmbhadminneaihj
Beschrijving Blocks all ads including facebook ads, youtube video ads, display ads etc.
Bestandsgrootte 429 KB
Aantal Installaties 20,000
Huidige Versie 1.5
Laatst Bijgewerkt 2022-08-15
Publicatiedatum 2021-11-07
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar cooldev
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://adblocker-for-chrome-ch4js.ondigitalocean.app/
URL van de Privacybeleid Pagina https://hawkbrad.github.io/privacy-policy-stackoverflow-bookmarker
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Adblocker for Chrome",
    "version": "1.5",
    "description": "Blocks all ads including facebook ads, youtube video ads, display ads etc.",
    "permissions": [
        "storage",
        "unlimitedStorage",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "icons": {
        "128": "adblock128.png"
    },
    "browser_action": {
        "default_icon": {
            "128": "adblock128.png"
        },
        "default_title": "AdBlocker for Chrome",
        "default_popup": "popup\/popup.html"
    },
    "content_security_policy": "script-src 'self' 'sha256-V\/iEy\/JDsKiWnn\/Sob0oSf4ctpuI27zHmLnLyOfgQ58='; object-src 'self'",
    "background": {
        "scripts": [
            "background\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/content.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "manifest_version": 2
}