Buckshot
Kills the Pigeon paywall software to view articles on NCNow.
Buckshotとは何ですか?
BuckshotはkotaKatによって開発されたChromeの拡張機能で、その主な機能は「Kills the Pigeon paywall software to view articles on NCNow.」です。
拡張機能のスクリーンショット
Buckshot拡張機能のCRXファイルをダウンロード
Buckshot拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
                        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.                     拡張機能の基本情報
| 名前 |   |  
| 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 | 
| Eメール | [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\/*"
            ]
        }
    ]
}  |  |