What The Hash?

Find out #wtf everyone is saying

Co to jest What The Hash??

What The Hash? to rozszerzenie Chrome opracowane przez Eleazar Vega-Gonzalez, a jego główną funkcją jest „Find out #wtf everyone is saying”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia What The Hash?

Pobierz pliki rozszerzeń What The Hash? w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        #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                    

Podstawowe informacje o rozszerzeniu

Nazwa What The Hash? What The Hash?
ID dccmckjomcladobbckpcgcgkflnelioc
Oficjalny URL https://chrome.google.com/webstore/detail/what-the-hash/dccmckjomcladobbckpcgcgkflnelioc
Opis Find out #wtf everyone is saying
Rozmiar pliku 56.19 KB
Liczba instalacji 26
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2014-02-16
Data Publikacji 2014-02-16
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Eleazar Vega-Gonzalez
Typ Płatności free
Obsługiwane Języki 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"
    ]
}