XSwitch

A tool for redirecting URLs and allowing CORS to make the local development experience easy and happy.

什麼是XSwitch?

XSwitch是由yize.shc開發的Chrome擴展程式,該擴展的主要功能是“A tool for redirecting URLs and allowing CORS to make the local development experience easy and happy.”。

擴展截圖

screenshot

下載XSwitch擴展crx文件

下載XSwitch擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        A tool for redirecting URLs and allowing CORS to make the local development experience easy and happy.
You can use it to redirect online CDN or any other URLs to other URLs, like local files/CDN URLs/inline JavaScript etc.
You can also make sites enabled CORS, just for you
Have Fun.                    

擴展基本資訊

名稱 XSwitch XSwitch
ID idkjhjggpffolpidfkikidcokdkdaogg
官方網址 https://chromewebstore.google.com/detail/xswitch/idkjhjggpffolpidfkikidcokdkdaogg
簡介 A tool for redirecting URLs and allowing CORS to make the local development experience easy and happy.
檔案大小 1.6 MB
安裝次數 20,000
目前版本 1.17.1
更新時間 2021-06-01
上架時間 2019-09-17
評分 5.00/5 共 18 次評分
開發者 yize.shc
電子郵箱 [email protected]
付費類型 free
擴展官網 https://yuque.com/jiushen/blog/lcwn7i
說明頁面URL https://github.com/yize/xswitch/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "XSwitch",
    "description": "A tool for redirecting URLs and allowing CORS to make the local development experience easy and happy.",
    "short_name": "xs",
    "version": "1.17.1",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "images\/grey_128.png",
        "default_title": "XSwitch",
        "default_popup": "XSwitch.html"
    },
    "permissions": [
        "webRequest",
        "storage",
        "webRequestBlocking",
        "browsingData",
        ""
    ],
    "icons": {
        "48": "images\/grey_128.png",
        "128": "images\/grey_128.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+X",
                "mac": "Command+Shift+X",
                "default": "Ctrl+Shift+X"
            }
        }
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.min.js"
        ]
    }
}