URL Forwarder

Redirect, block and do native processing of links.

URL Forwarderคืออะไร?

URL Forwarder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย irgang.la และคุณลักษณะหลักของมันคือ "Redirect, block and do native processing of links."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย URL Forwarder

ดาวน์โหลดไฟล์ส่วนขยาย URL Forwarder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
}