Buckshot
Kills the Pigeon paywall software to view articles on NCNow.
什么是Buckshot?
Buckshot是由kotaKat开发的Chrome扩展程序,该扩展的主要功能是“Kills the Pigeon paywall software to view articles on NCNow.”。
扩展截图
下载Buckshot扩展crx文件
下载Buckshot扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Software written in direct response to my local news (NorthCountryNow) implementing a super aggressive paywall platform. This script utilizes JQuery as well as Chrome web request blocking to block the paywall server as well as un-hide all elements that are normally hidden when the page loads if you aren't signed in. 扩展基本信息
| 名称 | |
| ID | hhblanakmfhobpackhkiekhlbdlgejbj |
| 官方URL | https://chromewebstore.google.com/detail/buckshot/hhblanakmfhobpackhkiekhlbdlgejbj |
| 简介 | Kills the Pigeon paywall software to view articles on NCNow. |
| 文件大小 | 42.33 KB |
| 安装次数 | 16 |
| 当前版本 | 0.2.0 |
| 更新时间 | 2020-07-10 |
| 上架时间 | 2020-07-09 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | kotaKat |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Buckshot",
"version": "0.2.0",
"description": "Kills the Pigeon paywall software to view articles on NCNow.",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"webRequest",
"webRequestBlocking",
"*:\/\/*.northcountrynow.com\/"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"run_at": "document_end",
"js": [
"jquery-3.5.1.min.js",
"content.js"
],
"matches": [
"https:\/\/*.northcountrynow.com\/*"
]
}
]
} | |