TOI Unblocker

This extension unblocks Times of India's Adblocker

Was ist TOI Unblocker?

TOI Unblocker ist eine Chrome-Erweiterung, die von Atharva Johri entwickelt wurde, und ihr Hauptmerkmal ist "This extension unblocks Times of India's Adblocker".

Erweiterungsscreenshots

screenshot

TOI Unblocker-Erweiterungs-CRX-Datei herunterladen

Laden Sie TOI Unblocker-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

                        A simple extension to unblock Times of India articles for adblocked pages.

Update v5
Support for Indian Express

Update v5.1
Support for NDTV                    

Grundlegende Informationen zur Erweiterung

Name TOI Unblocker TOI Unblocker
ID gmifbkhofncgnjcalinlemjcplolmion
Offizielle URL https://chrome.google.com/webstore/detail/toi-unblocker/gmifbkhofncgnjcalinlemjcplolmion
Beschreibung This extension unblocks Times of India's Adblocker
Dateigröße 36.42 KB
Installationsanzahl 143
Aktuelle Version 5.1
Letztes Update 2016-10-18
Veröffentlichungsdatum 2016-10-18
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Atharva Johri
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TOI Unblocker",
    "description": "This extension unblocks Times of India's Adblocker",
    "version": "5.1",
    "browser_action": {
        "default_icon": "static\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.indiatimes.com\/*",
                "*:\/\/*.timesofindia.indiatimes.com\/*",
                "*:\/\/*.intoday.in\/*",
                "*:\/\/*.hindustantimes.com\/*",
                "*:\/\/*.indianexpress.com\/*"
            ],
            "css": [
                "unblocker.css"
            ],
            "js": [
                "static\/jquery.js",
                "unblocker.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.indiatimes.com\/*",
                "*:\/\/*.timesofindia.indiatimes.com\/*",
                "*:\/\/*.intoday.in\/*"
            ],
            "css": [
                "unblocker.css"
            ],
            "js": [
                "static\/jquery.js",
                "unblocker-postload.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.intoday.in\/*"
            ],
            "js": [
                "static\/jquery.js",
                "unblocker-intoday.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.ndtv.com\/*"
            ],
            "js": [
                "static\/jquery.js",
                "unblocker-ndtv.js"
            ]
        }
    ]
}