No Miner

This extension will analyze a page's javascript files and block coin mining.

什麼是No Miner?

No Miner是由JustBrandonT開發的Chrome擴展程式,該擴展的主要功能是“This extension will analyze a page's javascript files and block coin mining.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載No Miner擴展crx文件

下載No Miner擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Blocks Coin-Miners from Websites before and after they load.

v1.0.1: Added Background content blocker which scans Javascript requests for CoinMiners and cancels the requests. The background blocker tells the content blocker to remove the script from the webpage. This blocks sites self-hosted miners and proxy-miners.

v1.0.2: Added Settings page to allow users to add white-listed URL patterns.. For example:  (.*?)google(.*?) would allow all urls that contain "google" to not be scanned. These rules use "regex"/"regular expression" patterns. Also added new patterns to block Base64 encoded Javascript miners which was a workaround to this plugin. Now this blocks everything again =]

v1.0.3: Fixed bug in Firefox and Chrome which causes webRequest.onBeforeRequest to NOT cancel the download of bad files. To fix it, I made scanning synchronous instead of asynchronous (a bit slower, but not noticeable). Fixes issue: https://github.com/Brandon-T/Coin-Blocker/issues/1

v1.0.4: Fixed bug in the code which caused some white-listed sites to be scanned and blocked still. Added debugging code to print to the developer's console exactly what was blocked and what was allowed.                    

擴展基本資訊

名稱 No Miner No Miner
ID pbnhojipeihlneembpdpaniddioobbib
官方網址 https://chromewebstore.google.com/detail/no-miner/pbnhojipeihlneembpdpaniddioobbib
簡介 This extension will analyze a page's javascript files and block coin mining.
檔案大小 52.09 KB
安裝次數 1,674
目前版本 1.0.4
更新時間 2017-12-28
上架時間 2017-12-28
評分 3.55/5 共 11 次評分
開發者 JustBrandonT
付費類型 free
擴展官網 https://github.com/Brandon-T/Coin-Blocker
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "No Miner",
    "description": "This extension will analyze a page's javascript files and block coin mining.",
    "version": "1.0.4",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "options_page": "settings.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "blocker2.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "jquery-3.2.1.min.js",
            "blocker.js"
        ]
    },
    "permissions": [
        "activeTab",
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ]
}