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」です。

拡張機能のスクリーンショット

screenshot

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 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
}