Keep The Tip
Hide tooltips and balloons when hovering over images and links
什么是Keep The Tip?
Keep The Tip是由j.grey开发的Chrome扩展程序,该扩展的主要功能是“Hide tooltips and balloons when hovering over images and links”。
扩展截图
下载Keep The Tip扩展crx文件
下载Keep The Tip扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Keep The Tip |
ID | nchkiefgjgoblhgnejemcgfgnfpgmdjm |
官方URL | https://chromewebstore.google.com/detail/keep-the-tip/nchkiefgjgoblhgnejemcgfgnfpgmdjm |
简介 | Hide tooltips and balloons when hovering over images and links |
文件大小 | 241 KB |
安装次数 | 24 |
当前版本 | 0.1.1 |
更新时间 | 2015-12-08 |
上架时间 | 2015-12-08 |
评分 | 3.00/5 共2次评分 |
开发者 | j.grey |
付费类型 | free |
支持的语言 | 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 } |