.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 là gì?

.URL Handler là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng .URL Handler

Tải xuống các tệp mở rộng .URL Handler dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên .URL Handler .URL Handler
ID nhmccpjmdhejpfhafcfajkgifkmjhkgf
URL Chính Thức https://chromewebstore.google.com/detail/url-handler/nhmccpjmdhejpfhafcfajkgifkmjhkgf
Mô tả An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details.
Kích Thước Tệp 38.38 KB
Số Lần Cài Đặt 8,776
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2012-09-03
Ngày Phát Hành 2012-09-03
Đánh Giá 3.08/5 Tổng số 26 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
URL Trang Trợ Giúp http://code.google.com/p/chromium/issues/detail?id=114871&can=5&colspec=ID%20Pri%20Mstone%20ReleaseBlock%20OS%20Area%20Feature%20Status%20Owner%20Summary
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}