Keep The Tip
Hide tooltips and balloons when hovering over images and links
Was ist Keep The Tip?
Keep The Tip ist eine Chrome-Erweiterung, die von j.grey entwickelt wurde, und ihr Hauptmerkmal ist "Hide tooltips and balloons when hovering over images and links".
Erweiterungsscreenshots
Keep The Tip-Erweiterungs-CRX-Datei herunterladen
Laden Sie Keep The Tip-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Keep The Tip |
ID | nchkiefgjgoblhgnejemcgfgnfpgmdjm |
Offizielle URL | https://chromewebstore.google.com/detail/keep-the-tip/nchkiefgjgoblhgnejemcgfgnfpgmdjm |
Beschreibung | Hide tooltips and balloons when hovering over images and links |
Dateigröße | 241 KB |
Installationsanzahl | 24 |
Aktuelle Version | 0.1.1 |
Letztes Update | 2015-12-08 |
Veröffentlichungsdatum | 2015-12-08 |
Bewertung | 3.00/5 Insgesamt 2 Bewertungen |
Entwickler | j.grey |
Zahlungsart | free |
Unterstützte Sprachen | 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 } |