Removing Ads

RemovingAds is a free and powerful ad blocker extension for Chrome and other browsers.

Was ist Removing Ads?

Removing Ads ist eine Chrome-Erweiterung, die von ChatterTime Media Inc entwickelt wurde, und ihr Hauptmerkmal ist "RemovingAds is a free and powerful ad blocker extension for Chrome and other browsers.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Removing Ads-Erweiterungs-CRX-Datei herunterladen

Laden Sie Removing Ads-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

                        It blocks annoying ads, pop-ups, and other intrusive elements from loading on any website you visit. 

It also provides additional protection for your online privacy by preventing advertisers from tracking your browsing history and accessing your personal information. 

Removingads is easy to install and use and can be adjusted to your individual needs. With its powerful ad blocking capabilities, Removingads is the perfect way to keep your online experience free of annoying ads and pop-ups.

Upon its installation, users will notice a fresh new tab design. This isn’t just for aesthetics. This newly introduced tab is brimming with informative features. It displays insightful statistics on the number of ads and trackers you’ve bypassed, showcasing the tangible benefits in terms of time and data saved.

Terms of service: https://removingads.com/terms-of-service
Privacy policy: https://removingads.com/privacy-policy                    

Grundlegende Informationen zur Erweiterung

Name Removing Ads Removing Ads
ID mgkidgjmnmipohmenfhmockdoneegmfe
Offizielle URL https://chromewebstore.google.com/detail/removing-ads/mgkidgjmnmipohmenfhmockdoneegmfe
Beschreibung RemovingAds is a free and powerful ad blocker extension for Chrome and other browsers.
Dateigröße 4.65 MB
Installationsanzahl 701
Aktuelle Version 0.1.2
Letztes Update 2024-01-12
Veröffentlichungsdatum 2023-02-21
Bewertung 4.73/5 Insgesamt 64 Bewertungen
Entwickler ChatterTime Media Inc
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://removingads.com/
URL der Datenschutzrichtlinien-Seite https://www.chattertime.media/privacy-policy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Removing Ads",
    "version": "0.1.2",
    "description": "RemovingAds is a free and powerful ad blocker extension for Chrome and other browsers.",
    "options_page": "options.html",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon_16.png",
            "32": "icon_32.png"
        }
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "content.bundle.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": false,
            "js": [
                "blockAdContent.bundle.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        },
        {
            "all_frames": false,
            "js": [
                "trialPopups.bundle.js"
            ],
            "css": [
                "popups.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon_16.png",
        "32": "icon_32.png",
        "64": "icon_64.png",
        "128": "icon_128.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "block_ads",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "permissions": [
        "tabs",
        "activeTab",
        "webRequest",
        "storage",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "minimum_chrome_version": "88",
    "web_accessible_resources": [
        {
            "resources": [
                "tutorial.html",
                "icon_64.png",
                "logo.png",
                "switch.png",
                "check-mark.svg",
                "popups.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "chrome_url_overrides": {
        "newtab": "override.html"
    }
}