Buckshot

Kills the Pigeon paywall software to view articles on NCNow.

Co to jest Buckshot?

Buckshot to rozszerzenie Chrome opracowane przez kotaKat, a jego główną funkcją jest „Kills the Pigeon paywall software to view articles on NCNow.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Buckshot

Pobierz pliki rozszerzeń Buckshot w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Buckshot Buckshot
ID hhblanakmfhobpackhkiekhlbdlgejbj
Oficjalny URL https://chromewebstore.google.com/detail/buckshot/hhblanakmfhobpackhkiekhlbdlgejbj
Opis Kills the Pigeon paywall software to view articles on NCNow.
Rozmiar pliku 42.33 KB
Liczba instalacji 16
Aktualna Wersja 0.2.0
Ostatnia Aktualizacja 2020-07-10
Data Publikacji 2020-07-09
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper kotaKat
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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\/*"
            ]
        }
    ]
}