Buckshot
Kills the Pigeon paywall software to view articles on NCNow.
Vad är Buckshot?
Buckshot är en Chrome-tillägg utvecklad av kotaKat, och dess huvudfunktion är "Kills the Pigeon paywall software to view articles on NCNow.".
Tilläggsskärmbilder
Ladda ner Buckshot-förlängningens CRX-fil
Ladda ner Buckshot-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Buckshot |
ID | hhblanakmfhobpackhkiekhlbdlgejbj |
Officiell webbadress | https://chromewebstore.google.com/detail/buckshot/hhblanakmfhobpackhkiekhlbdlgejbj |
Beskrivning | Kills the Pigeon paywall software to view articles on NCNow. |
Filstorlek | 42.33 KB |
Antal Installationer | 16 |
Aktuell Version | 0.2.0 |
Senast Uppdaterad | 2020-07-10 |
Publiceringsdatum | 2020-07-09 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | kotaKat |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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\/*" ] } ] } |