Buckshot
Kills the Pigeon paywall software to view articles on NCNow.
Wat is Buckshot?
Buckshot is een Chrome-extensie ontwikkeld door kotaKat, en de belangrijkste functie is "Kills the Pigeon paywall software to view articles on NCNow.".
Extensie Screenshots
Download het CRX-bestand van de extensie Buckshot
Download Buckshot-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Buckshot |
ID | hhblanakmfhobpackhkiekhlbdlgejbj |
Officiële URL | https://chromewebstore.google.com/detail/buckshot/hhblanakmfhobpackhkiekhlbdlgejbj |
Beschrijving | Kills the Pigeon paywall software to view articles on NCNow. |
Bestandsgrootte | 42.33 KB |
Aantal Installaties | 16 |
Huidige Versie | 0.2.0 |
Laatst Bijgewerkt | 2020-07-10 |
Publicatiedatum | 2020-07-09 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | kotaKat |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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\/*" ] } ] } |