Buckshot
Kills the Pigeon paywall software to view articles on NCNow.
Buckshot là gì?
Buckshot là một tiện ích mở rộng Chrome được phát triển bởi kotaKat, và tính năng chính của nó là "Kills the Pigeon paywall software to view articles on NCNow.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Buckshot
Tải xuống các tệp mở rộng Buckshot dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Buckshot |
ID | hhblanakmfhobpackhkiekhlbdlgejbj |
URL Chính Thức | https://chromewebstore.google.com/detail/buckshot/hhblanakmfhobpackhkiekhlbdlgejbj |
Mô tả | Kills the Pigeon paywall software to view articles on NCNow. |
Kích Thước Tệp | 42.33 KB |
Số Lần Cài Đặt | 16 |
Phiên Bản Hiện Tại | 0.2.0 |
Cập Nhật Lần Cuối | 2020-07-10 |
Ngày Phát Hành | 2020-07-09 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | kotaKat |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |