.URL Handler

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

O que é .URL Handler?

.URL Handler é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão .URL Handler

Baixe arquivos de extensão .URL Handler no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome .URL Handler .URL Handler
ID nhmccpjmdhejpfhafcfajkgifkmjhkgf
URL Oficial https://chromewebstore.google.com/detail/url-handler/nhmccpjmdhejpfhafcfajkgifkmjhkgf
Descrição An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details.
Tamanho do Arquivo 38.38 KB
Contagem de Instalações 8,776
Versão Atual 1.0
Última Atualização 2012-09-03
Data de Publicação 2012-09-03
Classificação 3.08/5 Total de 26 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
URL da Página de Ajuda http://code.google.com/p/chromium/issues/detail?id=114871&can=5&colspec=ID%20Pri%20Mstone%20ReleaseBlock%20OS%20Area%20Feature%20Status%20Owner%20Summary
Idiomas Suportados 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"
            ]
        }
    ]
}