Miner Away

Stop coin miners on the web!

Что такое Miner Away?

Miner Away - это расширение Chrome, разработанное arthurgeron, и его основная функция - "Stop coin miners on the web!".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Miner Away

Скачайте файлы расширений Miner Away в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        # Miner Away
Miner Away denies any website's attempt to use your browser as a cryptocurrency miner.

[Opera Web Store] (https://addons.opera.com/en/extensions/details/miner-away/?display=en)

### Features
- Blocks any JavaScript or web based miners
- Allows you to Whitelist a domain
- Display the current status (i.e. No miners, Warning/Blocked and Mining)
- Instantly notifies you when a website tries to start mining. (Desktop notification)

### How?
It blocks any request made by websites that match the domains in *blacklist.txt*.

## Contribute
Report problems, suggest features or improvements.                    

Основная информация о расширении

Название Miner Away Miner Away
ID fogeciakcpgnbjjnacoddpofmlebchnn
Официальный URL https://chromewebstore.google.com/detail/miner-away/fogeciakcpgnbjjnacoddpofmlebchnn
Описание Stop coin miners on the web!
Размер файла 53.6 KB
Количество установок 156
Текущая Версия 1.1
Последнее Обновление 2017-09-27
Дата публикации 2017-09-26
Рейтинг 5.00/5 Всего 1 оценок
Разработчик arthurgeron
Тип оплаты free
Официальный сайт расширения https://github.com/arthurgeron/mineraway
URL страницы помощи https://github.com/arthurgeron/mineraway
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Miner Away",
    "description": "Stop coin miners on the web!",
    "version": "1.1",
    "permissions": [
        "activeTab",
        "tabs",
        "",
        "webRequest",
        "webRequestBlocking",
        "notifications"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "icons": {
        "128": "img\/logo.png",
        "64": "img\/icon.png"
    },
    "browser_action": {
        "default_title": "Miner Away - Stop coin miners on the web.",
        "default_icon": "img\/logo.png",
        "default_popup": "html\/popup.html"
    },
    "manifest_version": 2,
    "minimum_chrome_version": "55",
    "author": "Arthur Geron"
}