.URL Handler
An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details.
Co to jest .URL Handler?
.URL Handler to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia .URL Handler
Pobierz pliki rozszerzeń .URL Handler w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | .URL Handler |
ID | nhmccpjmdhejpfhafcfajkgifkmjhkgf |
Oficjalny URL | https://chromewebstore.google.com/detail/url-handler/nhmccpjmdhejpfhafcfajkgifkmjhkgf |
Opis | An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details. |
Rozmiar pliku | 38.38 KB |
Liczba instalacji | 8,776 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2012-09-03 |
Data Publikacji | 2012-09-03 |
Ocena | 3.08/5 Łącznie 26 Oceny |
Deweloper | Unknown |
Typ Płatności | free |
Adres URL Strony Pomocy | http://code.google.com/p/chromium/issues/detail?id=114871&can=5&colspec=ID%20Pri%20Mstone%20ReleaseBlock%20OS%20Area%20Feature%20Status%20Owner%20Summary |
Obsługiwane Języki | 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" ] } ] } |