Do the harlem shake

Make the current page do the harlem shake

Что такое Do the harlem shake?

Do the harlem shake - это расширение Chrome, разработанное Jamie Davies, и его основная функция - "Make the current page do the harlem shake".

Скачать файл CRX расширения Do the harlem shake

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

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

                        Make any website do the harlem shake                    

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

Название Do the harlem shake Do the harlem shake
ID mobbapdpmefdbmdhkokjehgdnaglfkfc
Официальный URL https://chromewebstore.google.com/detail/do-the-harlem-shake/mobbapdpmefdbmdhkokjehgdnaglfkfc
Описание Make the current page do the harlem shake
Размер файла 1.09 MB
Количество установок 203
Текущая Версия 1.0
Последнее Обновление 2014-05-29
Дата публикации 2014-05-29
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Jamie Davies
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Do the harlem shake",
    "description": "Make the current page do the harlem shake",
    "author": "Jamie Davies",
    "homepage_url": "http:\/\/twitter.com\/viralpickaxe",
    "offline_enabled": false,
    "version": "1.0",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "Do the harlem shake!",
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        }
    },
    "manifest_version": 2
}