Coin-Hive Blocker

Save your computer from CryptoJackers

Vad är Coin-Hive Blocker?

Coin-Hive Blocker är en Chrome-tillägg utvecklad av Andreas Molle, och dess huvudfunktion är "Save your computer from CryptoJackers".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Coin-Hive Blocker-förlängningens CRX-fil

Ladda ner Coin-Hive Blocker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Coin-Hive Blocker Coin-Hive Blocker
ID ccagdbjcbhmcdcbbknfebhhdbolnfimo
Officiell webbadress https://chrome.google.com/webstore/detail/coin-hive-blocker/ccagdbjcbhmcdcbbknfebhhdbolnfimo
Beskrivning Save your computer from CryptoJackers
Filstorlek 37.3 KB
Antal Installationer 10,055
Aktuell Version 0.18
Senast Uppdaterad 2019-07-16
Publiceringsdatum 2019-07-15
Betyg 4.30/5 Totalt 270 Betyg
Utvecklare Andreas Molle
Betalningssätt free
Tilläggswebbplats https://nor.app/coinhiveblocker
Hjälpsida URL https://nor.app/coinhiveblocker
URL till Sekretesspolicy Sidan https://nor.app/privacypolicy
Stödda Språk 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
}