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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}