Clappe

Clap like the whole crowd. Make your claps be heard on Medium.

Что такое Clappe?

Clappe - это расширение Chrome, разработанное jukben, и его основная функция - "Clap like the whole crowd. Make your claps be heard on Medium.".

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

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

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

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

                        Tiny extension to make your claps be heard on Medium. Also providing super clap functionality if you want to be really supportive as a crowd.                    

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

Название Clappe Clappe
ID gfmcijindndhaflgmmkkcihndcclaled
Официальный URL https://chrome.google.com/webstore/detail/clappe/gfmcijindndhaflgmmkkcihndcclaled
Описание Clap like the whole crowd. Make your claps be heard on Medium.
Размер файла 296 KB
Количество установок 83
Текущая Версия 1.1.0
Последнее Обновление 2018-12-13
Дата публикации 2018-12-13
Рейтинг 5.00/5 Всего 2 оценок
Разработчик jukben
Тип оплаты free
Официальный сайт расширения https://github.com/jukben/clappe
URL страницы помощи https://github.com/jukben/clappe/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "1.1.0",
    "short_name": "__MSG_appShortName__",
    "manifest_version": 2,
    "default_locale": "en",
    "web_accessible_resources": [
        "sounds\/*"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "storage"
    ],
    "page_action": {
        "default_title": "__MSG_browserActionTitle__"
    },
    "options_page": "pages\/options.html",
    "options_ui": {
        "page": "pages\/options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "styles\/contentscript.css"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}