.URL Handler

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

Qu'est-ce que .URL Handler ?

.URL Handler est une extension Chrome développée par Unknown, et sa fonction principale est "An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension .URL Handler

Téléchargez les fichiers d'extension .URL Handler au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom .URL Handler .URL Handler
ID nhmccpjmdhejpfhafcfajkgifkmjhkgf
URL Officiel https://chromewebstore.google.com/detail/url-handler/nhmccpjmdhejpfhafcfajkgifkmjhkgf
Description An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details.
Taille du Fichier 38.38 KB
Nombre d'Installations 8,776
Version Actuelle 1.0
Dernière Mise à Jour 2012-09-03
Date de Publication 2012-09-03
Évaluation 3.08/5 Total 26 Évaluations
Développeur Unknown
Type de Paiement free
URL de la Page d'Aide http://code.google.com/p/chromium/issues/detail?id=114871&can=5&colspec=ID%20Pri%20Mstone%20ReleaseBlock%20OS%20Area%20Feature%20Status%20Owner%20Summary
Langues Prises en Charge 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"
            ]
        }
    ]
}