.URL Handler

An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details.

Что такое .URL Handler?

.URL Handler - это расширение Chrome, разработанное Unknown, и его основная функция - "An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details.".

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

screenshot
screenshot

Скачать файл CRX расширения .URL Handler

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

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

                        A really simple plugin to fix a slight but annoying problem with current versions of Chrome. The extension is called when a local *.url file is opened and automatically redirects the tab to the URL contained within the file rather than simply displaying it in plain text.

To see more about the issue see here:
http://code.google.com/p/chromium/issues/detail?id=114871&can=5&colspec=ID%20Pri%20Mstone%20ReleaseBlock%20OS%20Area%20Feature%20Status%20Owner%20Summary

Note: This extension requires the "Allow access to file URLs" permission.                    

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

Название .URL Handler .URL Handler
ID nhmccpjmdhejpfhafcfajkgifkmjhkgf
Официальный URL https://chromewebstore.google.com/detail/url-handler/nhmccpjmdhejpfhafcfajkgifkmjhkgf
Описание An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details.
Размер файла 38.38 KB
Количество установок 8,776
Текущая Версия 1.0
Последнее Обновление 2012-09-03
Дата публикации 2012-09-03
Рейтинг 3.08/5 Всего 26 оценок
Разработчик Unknown
Тип оплаты free
URL страницы помощи http://code.google.com/p/chromium/issues/detail?id=114871&can=5&colspec=ID%20Pri%20Mstone%20ReleaseBlock%20OS%20Area%20Feature%20Status%20Owner%20Summary
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": ".URL Handler",
    "version": "1.0",
    "manifest_version": 2,
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "description": "An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details.",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*.url"
            ],
            "js": [
                "jquery.js",
                "openurl.js"
            ]
        }
    ]
}