Coin-Hive Blocker

Save your computer from CryptoJackers

Τι είναι το Coin-Hive Blocker;

Το Coin-Hive Blocker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Andreas Molle, και η κύρια λειτουργία του είναι "Save your computer from CryptoJackers".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Coin-Hive Blocker

Λήψη αρχείων επέκτασης 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
Επίσημο 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
}