TOI Unblocker
This extension unblocks Times of India's Adblocker
什么是TOI Unblocker?
TOI Unblocker是由Atharva Johri开发的Chrome扩展程序,该扩展的主要功能是“This extension unblocks Times of India's Adblocker”。
扩展截图
下载TOI Unblocker扩展crx文件
下载TOI Unblocker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A simple extension to unblock Times of India articles for adblocked pages. Update v5 Support for Indian Express Update v5.1 Support for NDTV
扩展基本信息
名称 | |
ID | gmifbkhofncgnjcalinlemjcplolmion |
官方URL | https://chrome.google.com/webstore/detail/toi-unblocker/gmifbkhofncgnjcalinlemjcplolmion |
简介 | This extension unblocks Times of India's Adblocker |
文件大小 | 36.42 KB |
安装次数 | 143 |
当前版本 | 5.1 |
更新时间 | 2016-10-18 |
上架时间 | 2016-10-18 |
评分 | 5.00/5 共2次评分 |
开发者 | Atharva Johri |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" ] } ] } |