AdBlock Unicorn

The cutest Ad blocker, blocks ads from more than 50'000 sources.

Τι είναι το AdBlock Unicorn;

Το AdBlock Unicorn είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον AdBlock Unicorn, και η κύρια λειτουργία του είναι "The cutest Ad blocker, blocks ads from more than 50'000 sources.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης AdBlock Unicorn

Λήψη αρχείων επέκτασης AdBlock Unicorn σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Our technology blocks ads before they're displayed by blocking the requests.
In case something goes through we also have failsafe JS and CSS to remove ads

You may disable AdBlock Unicorn at any time by using the toggle button after clicking on the icon.

AdBlock Unicorn checks for custom script in our server to make sure we add all the latest critical ad blockings that cannot wait until the next Chrome store update which sometimes take multiple days.

Please visit our website and send us your feedback and suggestions on how to make our product better and cuter !

FAQ :
Q : Do you block video ads on Youtube and Facebook ?
A : Not at the moment, we are working on it                    

Βασικές Πληροφορίες Επέκτασης

Όνομα AdBlock Unicorn AdBlock Unicorn
ID ldjhogknogpdklogdocbicnlpljekejl
Επίσημο URL https://chromewebstore.google.com/detail/adblock-unicorn/ldjhogknogpdklogdocbicnlpljekejl
Περιγραφή The cutest Ad blocker, blocks ads from more than 50'000 sources.
Μέγεθος Αρχείου 391 KB
Αριθμός Εγκαταστάσεων 818
Τρέχουσα Έκδοση 2.0.2.0
Τελευταία Ενημέρωση 2020-11-17
Ημερομηνία Δημοσίευσης 2020-10-13
Αξιολόγηση 3.38/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής AdBlock Unicorn
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://adblock-unicorn.com/
URL της Σελίδας Πολιτικής Απορρήτου https://www.adblock-unicorn.com/privacy.html
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AdBlock Unicorn",
    "version": "2.0.2.0",
    "description": "The cutest Ad blocker, blocks ads from more than 50'000 sources.",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "https:\/\/*\/*",
        "storage"
    ],
    "icons": {
        "128": "128.png"
    },
    "web_accessible_resources": [
        "128.png"
    ],
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": true,
            "matches": [
                "https:\/\/adblock-unicorn.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "validation.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "menu.html"
    },
    "manifest_version": 2
}