Keep The Tip

Hide tooltips and balloons when hovering over images and links

Co to jest Keep The Tip?

Keep The Tip to rozszerzenie Chrome opracowane przez j.grey, a jego główną funkcją jest „Hide tooltips and balloons when hovering over images and links”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Keep The Tip

Pobierz pliki rozszerzeń Keep The Tip 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

                        Block annoying tooltips or infotips when you hover or mouseover images and links.

A Tooltip or infotip is a small pop-up window that describes the object being pointed to, such as descriptions of toolbar controls, icons, graphics, links...I am usually aware of my cursor placement, so I don't require a popup message stating the obvious.                    

Podstawowe informacje o rozszerzeniu

Nazwa Keep The Tip Keep The Tip
ID nchkiefgjgoblhgnejemcgfgnfpgmdjm
Oficjalny URL https://chromewebstore.google.com/detail/keep-the-tip/nchkiefgjgoblhgnejemcgfgnfpgmdjm
Opis Hide tooltips and balloons when hovering over images and links
Rozmiar pliku 241 KB
Liczba instalacji 24
Aktualna Wersja 0.1.1
Ostatnia Aktualizacja 2015-12-08
Data Publikacji 2015-12-08
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper j.grey
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Keep The Tip",
    "version": "0.1.1",
    "description": "Hide tooltips and balloons when hovering over images and links",
    "permissions": [
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "images\/true16.png",
        "48": "images\/true48.png",
        "128": "images\/true128.png"
    },
    "browser_action": {
        "default_icon": "images\/true48.png"
    },
    "background": {
        "scripts": [
            "jquery.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "jquery.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "manifest_version": 2
}