Asus Download Master Link Handler

This extension allows you to capture and redirect links to your Asus Download Master Application running on your Asus router.…

Asus Download Master Link Handler là gì?

Asus Download Master Link Handler là một tiện ích mở rộng Chrome được phát triển bởi Victor Holz, và tính năng chính của nó là "This extension allows you to capture and redirect links to your Asus Download Master Application running on your Asus router.…".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Asus Download Master Link Handler

Tải xuống các tệp mở rộng Asus Download Master Link 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

                        This extension allows you to capture and redirect links to your Asus Download Master Application running on your Asus router. Clicking on the icon shows you an options page where you can choose which files/links types to capture (including a custom comma separated list of link prefixes/postfixes).

Note: This is a beta version. I work on this project for fun and when I have free time.

The source code is available here: https://github.com/vicholz/Asus-Download-Master-Link-Handler

Changes in 0.0.3:
- Removed image replacement option. It only worked on some sites and looked weird on most others.
- Cleaned up logic to run onclick instead of onload.

Changes in 0.0.4:
- Added workaround for links on https sites (cannot be opened in iframe). Opens in new tab/window instead). Going to test with xhr later but will probably have to keep it this way

Changes in 0.0.5:
- Switched to XHR, and cleaned up. Workaround for HTTPS sites has to stay as any attempts to open links on the same page that are not HTTP are blocked.                    

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

Tên Asus Download Master Link Handler Asus Download Master Link Handler
ID eijljffkkhjjmoikgcepbiodfloejcfm
URL Chính Thức https://chromewebstore.google.com/detail/asus-download-master-link/eijljffkkhjjmoikgcepbiodfloejcfm
Mô tả This extension allows you to capture and redirect links to your Asus Download Master Application running on your Asus router.…
Kích Thước Tệp 734 KB
Số Lần Cài Đặt 458
Phiên Bản Hiện Tại 0.0.5
Cập Nhật Lần Cuối 2014-09-15
Ngày Phát Hành 2014-09-14
Đánh Giá 4.00/5 Tổng số 12 Đánh Giá
Nhà Phát Triển Victor Holz
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Asus Download Master Link Handler",
    "description": "",
    "version": "0.0.5",
    "minimum_chrome_version": "23",
    "icons": {
        "16": "assets\/icon_16.png",
        "128": "assets\/icon_128.png"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "browser_action": {
        "default_title": "Asus Download Master Link Handler",
        "default_icon": "assets\/icon_128.png",
        "default_popup": "options.html"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "*.png"
    ]
}