Fix Chrome middle click behaviour

Prevents Chrome from firing the 'click' event on middle click to fix scripts written with the behaviour of other browsers in mind.

Что такое Fix Chrome middle click behaviour?

Fix Chrome middle click behaviour - это расширение Chrome, разработанное Will Hirsch, и его основная функция - "Prevents Chrome from firing the 'click' event on middle click to fix scripts written with the behaviour of other browsers in mind.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Fix Chrome middle click behaviour

Скачайте файлы расширений Fix Chrome middle click behaviour в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                                            

Основная информация о расширении

Название Fix Chrome middle click behaviour Fix Chrome middle click behaviour
ID ndinbeikllkfjbmlfghokbkmcciflpek
Официальный URL https://chromewebstore.google.com/detail/fix-chrome-middle-click-b/ndinbeikllkfjbmlfghokbkmcciflpek
Описание Prevents Chrome from firing the 'click' event on middle click to fix scripts written with the behaviour of other browsers in mind.
Размер файла 6.19 KB
Количество установок 2,577
Текущая Версия 1.1
Последнее Обновление 2013-12-20
Дата публикации 2013-12-19
Рейтинг 4.43/5 Всего 75 оценок
Разработчик Will Hirsch
Тип оплаты free
Поддерживаемые языки en,en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_application_title__",
    "version": "1.1",
    "description": "__MSG_application_description__",
    "default_locale": "en",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ],
            "run_at": "document_start"
        }
    ]
}