XSwitch

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

Co je XSwitch?

XSwitch je rozšíření Chrome vyvinuté yize.shc, a jeho hlavní funkcí je „A tool for redirecting URLs and allowing CORS to make the local development experience easy and happy.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření XSwitch

Stáhněte si soubory rozšíření XSwitch ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název XSwitch XSwitch
ID idkjhjggpffolpidfkikidcokdkdaogg
Oficiální URL https://chromewebstore.google.com/detail/xswitch/idkjhjggpffolpidfkikidcokdkdaogg
Popis A tool for redirecting URLs and allowing CORS to make the local development experience easy and happy.
Velikost souboru 1.6 MB
Počet instalací 20,000
Aktuální Verze 1.17.1
Poslední Aktualizace 2021-06-01
Datum Vydání 2019-09-17
Hodnocení 5.00/5 Celkem 18 Hodnocení
Vývojář yize.shc
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://yuque.com/jiushen/blog/lcwn7i
URL Stránky Nápovědy https://github.com/yize/xswitch/issues
Podporované Jazyky 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"
        ]
    }
}