TOI Unblocker
This extension unblocks Times of India's Adblocker
Vad är TOI Unblocker?
TOI Unblocker är en Chrome-tillägg utvecklad av Atharva Johri, och dess huvudfunktion är "This extension unblocks Times of India's Adblocker".
Tilläggsskärmbilder
Ladda ner TOI Unblocker-förlängningens CRX-fil
Ladda ner TOI Unblocker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
A simple extension to unblock Times of India articles for adblocked pages. Update v5 Support for Indian Express Update v5.1 Support for NDTV
Grundläggande Information om Tillägg
Namn | |
ID | gmifbkhofncgnjcalinlemjcplolmion |
Officiell webbadress | https://chrome.google.com/webstore/detail/toi-unblocker/gmifbkhofncgnjcalinlemjcplolmion |
Beskrivning | This extension unblocks Times of India's Adblocker |
Filstorlek | 36.42 KB |
Antal Installationer | 143 |
Aktuell Version | 5.1 |
Senast Uppdaterad | 2016-10-18 |
Publiceringsdatum | 2016-10-18 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | Atharva Johri |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |