XSwitch

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

Was ist XSwitch?

XSwitch ist eine Chrome-Erweiterung, die von yize.shc entwickelt wurde, und ihr Hauptmerkmal ist "A tool for redirecting URLs and allowing CORS to make the local development experience easy and happy.".

Erweiterungsscreenshots

screenshot

XSwitch-Erweiterungs-CRX-Datei herunterladen

Laden Sie XSwitch-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name XSwitch XSwitch
ID idkjhjggpffolpidfkikidcokdkdaogg
Offizielle URL https://chromewebstore.google.com/detail/xswitch/idkjhjggpffolpidfkikidcokdkdaogg
Beschreibung A tool for redirecting URLs and allowing CORS to make the local development experience easy and happy.
Dateigröße 1.6 MB
Installationsanzahl 20,000
Aktuelle Version 1.17.1
Letztes Update 2021-06-01
Veröffentlichungsdatum 2019-09-17
Bewertung 5.00/5 Insgesamt 18 Bewertungen
Entwickler yize.shc
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://yuque.com/jiushen/blog/lcwn7i
Hilfeseite URL https://github.com/yize/xswitch/issues
Unterstützte Sprachen 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"
        ]
    }
}