XSwitch

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

Что такое XSwitch?

XSwitch - это расширение Chrome, разработанное yize.shc, и его основная функция - "A tool for redirecting URLs and allowing CORS to make the local development experience easy and happy.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения XSwitch

Скачайте файлы расширений 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
Официальный URL 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"
        ]
    }
}