Buckshot

Kills the Pigeon paywall software to view articles on NCNow.

O que é Buckshot?

Buckshot é uma extensão do Chrome desenvolvida por kotaKat, e sua principal característica é "Kills the Pigeon paywall software to view articles on NCNow.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Buckshot

Baixe arquivos de extensão Buckshot no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Buckshot Buckshot
ID hhblanakmfhobpackhkiekhlbdlgejbj
URL Oficial https://chromewebstore.google.com/detail/buckshot/hhblanakmfhobpackhkiekhlbdlgejbj
Descrição Kills the Pigeon paywall software to view articles on NCNow.
Tamanho do Arquivo 42.33 KB
Contagem de Instalações 16
Versão Atual 0.2.0
Última Atualização 2020-07-10
Data de Publicação 2020-07-09
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor kotaKat
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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\/*"
            ]
        }
    ]
}