URL Forwarder

Redirect, block and do native processing of links.

URL Forwarder란 무엇입니까?

URL Forwarder은(는) irgang.la에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Redirect, block and do native processing of links."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

URL Forwarder 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The URL Forwarder extension allows you to block and redirect links in your browser which match a given pattern.

The in browser options are stay, block or redirect. The stay option will rediect matching URLs to the URL of the last active tab, which is in most cases the page where you clicked the link. Block will show a browser block page and with the redirect action you can specify a new URL which will be opened.

The use of this extension comes together with its natice counterpart. The host app receives all URLs which are matched together with a target (app) and additional arguments you can specify. Togehter with the stay action this allows you to open a link you click in another application, e.g. another browser.

You can download the host app, get additional information and the source code at: https://github.com/irgangla/url_forwarder/tree/master/host                    

확장 프로그램 기본 정보

이름 URL Forwarder URL Forwarder
ID lmpeobbiikaflonkgjaadebdgcnnfalp
공식 URL https://chrome.google.com/webstore/detail/url-forwarder/lmpeobbiikaflonkgjaadebdgcnnfalp
설명 Redirect, block and do native processing of links.
파일 크기 20.48 KB
설치 횟수 189
현재 버전 1.1
최근 업데이트 2017-11-18
출시 날짜 2017-11-18
개발자 irgang.la
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/irgangla/url_forwarder
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "URL Forwarder",
    "description": "Redirect, block and do native processing of links.",
    "version": "1.1",
    "browser_action": {
        "browser_style": true,
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "nativeMessaging",
        "tabs",
        "background",
        "webRequest",
        "",
        "webRequestBlocking",
        "",
        "storage"
    ],
    "manifest_version": 2
}