URL Redirect for Developers

Allows you to redirect one URL to another. It is intended to help developers debug issues on production websites.

URL Redirect for Developersคืออะไร?

URL Redirect for Developers เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Brian Mock และคุณลักษณะหลักของมันคือ "Allows you to redirect one URL to another. It is intended to help developers debug issues on production websites."

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

screenshot

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

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

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

                        Examples of what you can do with URL Redirect for Developers:

- Replace a minified version of jQuery with a regular build for better debugging

- Replace production webpack bundles with local webpack bundles for testing your local code changes against production data

- Disabling Content-Security-Policy (CSP) on certain domains in order to test changes

- Redirect backend URLs to different URLs in order to test unimplemented backend features                    

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

ชื่อ URL Redirect for Developers URL Redirect for Developers
ID dapeklgnmaelnloappfkohdngdggcakf
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/url-redirect-for-develope/dapeklgnmaelnloappfkohdngdggcakf
คำอธิบาย Allows you to redirect one URL to another. It is intended to help developers debug issues on production websites.
ขนาดไฟล์ 131 KB
จำนวนการติดตั้ง 465
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2020-01-09
วันที่เผยแพร่ 2020-01-05
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Brian Mock
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://mockbrian.com
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "description": "Allows you to redirect one URL to another. It is intended to help developers debug issues on production websites.",
    "name": "URL Redirect for Developers",
    "short_name": "URL Redirect",
    "version": "1.1",
    "author": "Brian Mock (mockbrian.com)",
    "homepage_url": "https:\/\/github.com\/wavebeem\/url-redirect-webextension",
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "icons": {
        "16": "img\/icon-enabled.png",
        "32": "img\/[email protected]",
        "128": "img\/[email protected]"
    },
    "permissions": [
        "webRequest",
        "webNavigation",
        "webRequestBlocking",
        ""
    ],
    "content_security_policy": "default-src 'self'; script-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'",
    "background": {
        "scripts": [
            "lib\/webextension-polyfill.js",
            "lib\/parsimmon.js",
            "src\/background.js"
        ]
    },
    "browser_action": {
        "default_title": "URL Redirect",
        "default_icon": {
            "16": "img\/icon-enabled.png",
            "32": "img\/[email protected]"
        }
    }
}