NonAd Block

This extension blocks any content that is NOT an ad.

Was ist NonAd Block?

NonAd Block ist eine Chrome-Erweiterung, die von okcarl entwickelt wurde, und ihr Hauptmerkmal ist "This extension blocks any content that is NOT an ad.".

Erweiterungsscreenshots

screenshot

NonAd Block-Erweiterungs-CRX-Datei herunterladen

Laden Sie NonAd Block-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 shows you the Internet the way content creators want you to see it: by blocking any content that is NOT an ad. It helps you focus on the important parts of webpages.

Created for the Stupid Sh*t No One Needs & Terrible Ideas Hackathon 2016.


New version improves performance and shows more ads.                    

Grundlegende Informationen zur Erweiterung

Name NonAd Block NonAd Block
ID mjdphmpknkepficogfmnfhabmlngggip
Offizielle URL https://chromewebstore.google.com/detail/nonad-block/mjdphmpknkepficogfmnfhabmlngggip
Beschreibung This extension blocks any content that is NOT an ad.
Dateigröße 58.6 KB
Installationsanzahl 890
Aktuelle Version 1.0.0.1
Letztes Update 2016-02-11
Veröffentlichungsdatum 2016-02-09
Bewertung 4.35/5 Insgesamt 82 Bewertungen
Entwickler okcarl
Zahlungsart free
Erweiterungswebsite http://www.stupidhackathon.com/
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NonAd Block",
    "short_name": "NonAdblock",
    "description": "This extension blocks any content that is NOT an ad.",
    "version": "1.0.0.1",
    "homepage_url": "http:\/\/www.stupidhackathon.com\/",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Click here!"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "background": {
        "scripts": [
            "jquery-1.12.0.min.js",
            "app.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-1.12.0.min.js",
                "app.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ]
}