Keep The Tip

Hide tooltips and balloons when hovering over images and links

Hvad er Keep The Tip?

Keep The Tip er en Chrome-udvidelse udviklet af j.grey, og dens hovedfunktion er "Hide tooltips and balloons when hovering over images and links".

Udvidelsesskærmbilleder

screenshot

Download Keep The Tip-udvidelses-CRX-fil

Download Keep The Tip-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Keep The Tip Keep The Tip
ID nchkiefgjgoblhgnejemcgfgnfpgmdjm
Officiel URL https://chromewebstore.google.com/detail/keep-the-tip/nchkiefgjgoblhgnejemcgfgnfpgmdjm
Beskrivelse Hide tooltips and balloons when hovering over images and links
Filstørrelse 241 KB
Antal Installationer 24
Nuværende Version 0.1.1
Senest Opdateret 2015-12-08
Udgivelsesdato 2015-12-08
Bedømmelse 3.00/5 Samlet 2 Bedømmelser
Udvikler j.grey
Betalingsmetode free
Understøttede Sprog 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
}