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文件

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

擴展使用說明

                        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
官方網址 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
}