.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是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details.”。
擴展截圖
下載.URL Handler擴展crx文件
下載.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 |
ID | nhmccpjmdhejpfhafcfajkgifkmjhkgf |
官方網址 | 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" ] } ] } |