Keep The Tip
Hide tooltips and balloons when hovering over images and links
Что такое Keep The Tip?
Keep The Tip - это расширение Chrome, разработанное j.grey, и его основная функция - "Hide tooltips and balloons when hovering over images and links".
Снимки экрана расширения
Скачать файл CRX расширения Keep The Tip
Скачайте файлы расширений 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.                     Основная информация о расширении
| Название |   |  
| 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
}  |  |