NonAd Block

This extension blocks any content that is NOT an ad.

Cos'è NonAd Block?

NonAd Block è un'estensione di Chrome sviluppata da okcarl, e la sua funzione principale è "This extension blocks any content that is NOT an ad.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione NonAd Block

Scarica i file di estensione NonAd Block in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome NonAd Block NonAd Block
ID mjdphmpknkepficogfmnfhabmlngggip
URL Ufficiale https://chromewebstore.google.com/detail/nonad-block/mjdphmpknkepficogfmnfhabmlngggip
Descrizione This extension blocks any content that is NOT an ad.
Dimensione del File 58.6 KB
Conteggio Installazioni 890
Versione Corrente 1.0.0.1
Ultimo Aggiornamento 2016-02-11
Data di Pubblicazione 2016-02-09
Valutazione 4.35/5 Totale 82 Valutazioni
Sviluppatore okcarl
Tipo di Pagamento free
Sito Web dell'Estensione http://www.stupidhackathon.com/
Lingue Supportate 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"
        }
    ]
}