.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.」です。

拡張機能のスクリーンショット

screenshot
screenshot

.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 .URL Handler
ID nhmccpjmdhejpfhafcfajkgifkmjhkgf
公式URL 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"
            ]
        }
    ]
}