Buckshot
Kills the Pigeon paywall software to view articles on NCNow.
Was ist Buckshot?
Buckshot ist eine Chrome-Erweiterung, die von kotaKat entwickelt wurde, und ihr Hauptmerkmal ist "Kills the Pigeon paywall software to view articles on NCNow.".
Erweiterungsscreenshots
Buckshot-Erweiterungs-CRX-Datei herunterladen
Laden Sie Buckshot-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
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.
Grundlegende Informationen zur Erweiterung
Name | Buckshot |
ID | hhblanakmfhobpackhkiekhlbdlgejbj |
Offizielle URL | https://chromewebstore.google.com/detail/buckshot/hhblanakmfhobpackhkiekhlbdlgejbj |
Beschreibung | Kills the Pigeon paywall software to view articles on NCNow. |
Dateigröße | 42.33 KB |
Installationsanzahl | 16 |
Aktuelle Version | 0.2.0 |
Letztes Update | 2020-07-10 |
Veröffentlichungsdatum | 2020-07-09 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | kotaKat |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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\/*" ] } ] } |