What The Hash?

Find out #wtf everyone is saying

Что такое What The Hash??

What The Hash? - это расширение Chrome, разработанное Eleazar Vega-Gonzalez, и его основная функция - "Find out #wtf everyone is saying".

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

screenshot

Скачать файл CRX расширения What The Hash?

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

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

                        #omg #tbt #ff #fbf #yolo

Tired of keeping up with the latest hashtags? With "What the Hash?" just hover over a hashtag on twitter, Facebook, or anywhere else and immediately get a definition.


Built using the tagdef API
http://www.tagdef.com                    

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

Название What The Hash? What The Hash?
ID dccmckjomcladobbckpcgcgkflnelioc
Официальный URL https://chrome.google.com/webstore/detail/what-the-hash/dccmckjomcladobbckpcgcgkflnelioc
Описание Find out #wtf everyone is saying
Размер файла 56.19 KB
Количество установок 26
Текущая Версия 1.0
Последнее Обновление 2014-02-16
Дата публикации 2014-02-16
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Eleazar Vega-Gonzalez
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "What The Hash?",
    "version": "1.0",
    "description": "Find out #wtf everyone is saying",
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "96": "96.png",
        "128": "128.png",
        "256": "256.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "explained.js"
            ]
        }
    ],
    "background": {
        "page": "background.html",
        "js": [
            "jquery-2.1.0.min.js",
            "background.js"
        ]
    },
    "permissions": [
        "http:\/\/api.tagdef.com\/*",
        "storage"
    ]
}