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란 무엇입니까?

Asus Download Master Link Handler은(는) Victor Holz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows you to capture and redirect links to your Asus Download Master Application running on your Asus router.…"입니다.

확장 프로그램 스크린샷

screenshot

Asus Download Master Link Handler 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Asus Download Master Link Handler Asus Download Master Link Handler
ID eijljffkkhjjmoikgcepbiodfloejcfm
공식 URL https://chromewebstore.google.com/detail/asus-download-master-link/eijljffkkhjjmoikgcepbiodfloejcfm
설명 This extension allows you to capture and redirect links to your Asus Download Master Application running on your Asus router.…
파일 크기 734 KB
설치 횟수 458
현재 버전 0.0.5
최근 업데이트 2014-09-15
출시 날짜 2014-09-14
평점 4.00/5 총 12 개의 평점
개발자 Victor Holz
결제 유형 free
지원되는 언어 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"
    ]
}