Buckshot

Kills the Pigeon paywall software to view articles on NCNow.

Qu'est-ce que Buckshot ?

Buckshot est une extension Chrome développée par kotaKat, et sa fonction principale est "Kills the Pigeon paywall software to view articles on NCNow.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Buckshot

Téléchargez les fichiers d'extension Buckshot au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Buckshot Buckshot
ID hhblanakmfhobpackhkiekhlbdlgejbj
URL Officiel https://chromewebstore.google.com/detail/buckshot/hhblanakmfhobpackhkiekhlbdlgejbj
Description Kills the Pigeon paywall software to view articles on NCNow.
Taille du Fichier 42.33 KB
Nombre d'Installations 16
Version Actuelle 0.2.0
Dernière Mise à Jour 2020-07-10
Date de Publication 2020-07-09
Évaluation 5.00/5 Total 1 Évaluations
Développeur kotaKat
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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\/*"
            ]
        }
    ]
}