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
}