Redirector

Redirect urls using regular expressions

Redirectorคืออะไร?

Redirector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ben Davis Media และคุณลักษณะหลักของมันคือ "Redirect urls using regular expressions"

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

screenshot

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

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

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

                        This simple extension allows you to redirect urls using the power of regular expressions.

For example, you can have all mobile Wikipedia urls to open in desktop mode (this is convered in the tutorial below).

You could also redirect to non-browser schemes to launch external apps. For example,If you want youtube links to open in a desktop video app (such as minitube), you can redirect all youtube urls with a "youtube:" prefix, and then set up a scheme handler on your OS to pass youtube: urls to your player.

For documentation, visit the product home page: http://bendavis78.github.io/chrome-extension-redirector                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Redirector Redirector
ID pajiegeliagebegjdhebejdlknciafen
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/redirector/pajiegeliagebegjdhebejdlknciafen
คำอธิบาย Redirect urls using regular expressions
ขนาดไฟล์ 15.54 KB
จำนวนการติดตั้ง 26,623
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2013-07-28
วันที่เผยแพร่ 2013-07-27
คะแนน 4.38/5 รวมทั้งหมด 97 คะแนน
ผู้พัฒนา Ben Davis Media
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://bendavis78.github.io/chrome-extension-redirector
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Redirector",
    "description": "Redirect urls using regular expressions",
    "icons": {
        "16": "icon\/16.png",
        "32": "icon\/32.png",
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    },
    "version": "1.0",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html",
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "content_security_policy": "script-src 'self' https:\/\/*.googleapis.com https:\/\/*.bootstrapcdn.com; object-src 'self'"
}