.URL Handler
An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details.
Was ist .URL Handler?
.URL Handler ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details.".
Erweiterungsscreenshots
.URL Handler-Erweiterungs-CRX-Datei herunterladen
Laden Sie .URL Handler-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | .URL Handler |
ID | nhmccpjmdhejpfhafcfajkgifkmjhkgf |
Offizielle URL | https://chromewebstore.google.com/detail/url-handler/nhmccpjmdhejpfhafcfajkgifkmjhkgf |
Beschreibung | An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details. |
Dateigröße | 38.38 KB |
Installationsanzahl | 8,776 |
Aktuelle Version | 1.0 |
Letztes Update | 2012-09-03 |
Veröffentlichungsdatum | 2012-09-03 |
Bewertung | 3.08/5 Insgesamt 26 Bewertungen |
Entwickler | Unknown |
Zahlungsart | free |
Hilfeseite URL | http://code.google.com/p/chromium/issues/detail?id=114871&can=5&colspec=ID%20Pri%20Mstone%20ReleaseBlock%20OS%20Area%20Feature%20Status%20Owner%20Summary |
Unterstützte Sprachen | 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" ] } ] } |