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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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",
        ""
    ]
}