Custom Redirects

Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts.

Custom Redirectsคืออะไร?

Custom Redirects เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Pawel Raszewski และคุณลักษณะหลักของมันคือ "Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts."

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

screenshot

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

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

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

                        This extension makes possible to redirect specified URLs to different locations. It may be very useful for debugging production sites which have minified JS which can be replaced for non-minified JS.

Any asset URL can be redirected to any destination, that means you can replace images, CSS, javascript files and everything that is loaded by a browser via HTTP request.                    

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

ชื่อ Custom Redirects Custom Redirects
ID kekdllcidamgebonidegjekidhdihdli
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/custom-redirects/kekdllcidamgebonidegjekidhdihdli
คำอธิบาย Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts.
ขนาดไฟล์ 135 KB
จำนวนการติดตั้ง 10,000
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2014-02-12
วันที่เผยแพร่ 2014-02-12
คะแนน 3.85/5 รวมทั้งหมด 205 คะแนน
ผู้พัฒนา Pawel Raszewski
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Custom Redirects",
    "version": "1.0.1",
    "description": "Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "icons": {
        "128": "assets_swapper_icon_128.png",
        "48": "assets_swapper_icon_48.png",
        "16": "assets_swapper_icon_16.png"
    },
    "options_page": "options.html",
    "page_action": {
        "default_icon": "assets_swapper_icon_48.png",
        "default_title": "Assets Swapper - Enabled here"
    }
}