Coin-Hive Blocker

Save your computer from CryptoJackers

Coin-Hive Blocker란 무엇입니까?

Coin-Hive Blocker은(는) Andreas Molle에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save your computer from CryptoJackers"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Coin-Hive Blocker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Super-light script that removes coin-hive and other crypto-miners from all websites. The script both cancels all requests from Coinhive and removes the script from the DOM before it loads.
* Update 18
  - Phasing out Premium 
* Update 17
 - Notification change
* Update 16
 - Handle denied permission for email
* Update 15
 - Premium plan notification
* Update 0.14
 - Fix for initial pattern list
* Update 0.13
 - Bugfix for too sensitive CPU-scanner
 - CoinHiveblocker Premium
 - Server rendered auto-analysis of suspicious pages(premium)
 - Wider range of known miner-domains(premium)
 - Added guide for miners not blockable by chrome api(premium) 
* Update 0.12
 - New UI
 - Bugfixes
- Collecting data on already blocked domains
 - New server for block-list
 - Block-timeout
 - New Switch method
* Update 0.11
 - Add notification block, small change in UI (popup)
*Update 0.10
 - Bug Fix, fetch backup blacklist locally on failed fetch
*Update 0.9
 - Add whitelist for reported sites to avoid unnecessary notifications  
*Update 0.8
 - Add CPU-load detection
 - Blacklist is now fetched from github (https://github.com/andreas0607/CoinHive-blocker/blob/master/blacklist.json)
 - Notification when consistant high CPU-load, fetches site-url and sends to dev for inspection
*Update 0.7
 - Remove welcome screen (it was annoying) 
*Update 0.6
 - Update list of miners to block
*Update 0.5
 - Creating statistics from blocked sites
 - Toggle to statistics display-mode
 - Welcome message
*Update 0.4
 - Toggle on and off the blocker by clicking the icon top left

*Update 0.3
 - Updating to block coin-hives new domain coinhive.com

-----------------------------------------------------------
Source-code: https://github.com/andreas0607/CoinHive-blocker/


Coin-Hive is:
"Coinhive offers a JavaScript miner for the Monero Blockchain (Why Monero?) that you can embed in your website. Your users run the miner directly in their Browser and mine XMR for you"

This means it steals your CPU power and slows your computer down.                    

확장 프로그램 기본 정보

이름 Coin-Hive Blocker Coin-Hive Blocker
ID ccagdbjcbhmcdcbbknfebhhdbolnfimo
공식 URL https://chrome.google.com/webstore/detail/coin-hive-blocker/ccagdbjcbhmcdcbbknfebhhdbolnfimo
설명 Save your computer from CryptoJackers
파일 크기 37.3 KB
설치 횟수 10,055
현재 버전 0.18
최근 업데이트 2019-07-16
출시 날짜 2019-07-15
평점 4.30/5 총 270 개의 평점
개발자 Andreas Molle
결제 유형 free
확장 프로그램 웹 사이트 https://nor.app/coinhiveblocker
도움말 페이지 URL https://nor.app/coinhiveblocker
개인정보 보호 정책 페이지 URL https://nor.app/privacypolicy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Coin-Hive Blocker",
    "description": "Save your computer from CryptoJackers",
    "version": "0.18",
    "permissions": [
        "tabs",
        "storage",
        "",
        "webRequest",
        "webRequestBlocking",
        "https:\/\/raw.githubusercontent.com\/andreas0607\/CoinHive-blocker\/master\/*",
        "system.cpu",
        "notifications",
        "https:\/\/nor.app\/*"
    ],
    "optional_permissions": [
        "identity",
        "identity.email"
    ],
    "icons": {
        "128": "128.png"
    },
    "browser_action": {
        "default_icon": "128.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "bg.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "popup.js",
        "popup.html",
        "upgrade.svg",
        "blacklist.json",
        "patterns.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/nor.app\/blockguide"
            ],
            "js": [
                "patterns.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "manifest_version": 2
}