On the blockchain

Adds 'on the blockchain' to the end of every sentence.

Что такое On the blockchain?

On the blockchain - это расширение Chrome, разработанное David Tran, и его основная функция - "Adds 'on the blockchain' to the end of every sentence.".

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

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения On the blockchain

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

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

                        Inspired by Erin Griffith and "Millennials to Snake People"! See coverage here: https://bit.ly/on-the-blockchain

Warning: Super naive implementation that main ruin all your browsing experience, but don't worry; everything will be preserved on the blockchain!

When you've had enough of the blockchain, to disable or uninstall, simply go to Preferences > Extensions > Uncheck "Enable" or hit the "Trash" icon.                    

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

Название On the blockchain On the blockchain
ID jieoegmpbhhhdeidanoldbfnghajiehe
Официальный URL https://chromewebstore.google.com/detail/on-the-blockchain/jieoegmpbhhhdeidanoldbfnghajiehe
Описание Adds 'on the blockchain' to the end of every sentence.
Размер файла 24.5 KB
Количество установок 39
Текущая Версия 0.1.3
Последнее Обновление 2018-01-20
Дата публикации 2018-01-20
Рейтинг 4.80/5 Всего 5 оценок
Разработчик David Tran
Тип оплаты free
Официальный сайт расширения https://github.com/dtran320/on-the-blockchain
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "On the blockchain",
    "short_name": "On the blockchain",
    "description": "Adds 'on the blockchain' to the end of every sentence.",
    "author": "David Tran",
    "version": "0.1.3",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}