Buckshot

Kills the Pigeon paywall software to view articles on NCNow.

Buckshot क्या है?

Buckshot kotaKat द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Kills the Pigeon paywall software to view articles on NCNow."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Buckshot एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Buckshot Buckshot
ID hhblanakmfhobpackhkiekhlbdlgejbj
आधिकारिक URL https://chromewebstore.google.com/detail/buckshot/hhblanakmfhobpackhkiekhlbdlgejbj
विवरण Kills the Pigeon paywall software to view articles on NCNow.
फ़ाइल का आकार 42.33 KB
स्थापना संख्या 16
वर्तमान संस्करण 0.2.0
अंतिम अपडेट 2020-07-10
प्रकाशन तिथि 2020-07-09
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर kotaKat
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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\/*"
            ]
        }
    ]
}