Former2 Helper

Helps avoid CORS issues with former2.com

Что такое Former2 Helper?

Former2 Helper - это расширение Chrome, разработанное Ian Mckay, и его основная функция - "Helps avoid CORS issues with former2.com".

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

screenshot
screenshot

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

Скачайте файлы расширений Former2 Helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Calls to the AWS service API endpoints are made either directly with the JavaScript SDK or via the browser extension (which also hits endpoints directly). Recording data is kept entirely in memory or on local disk and is never sent over the internet or anywhere else. You should take care to remove any sensitive data (passwords etc.) when sharing your generated code/templates with others.                    

Основная информация о расширении

Название Former2 Helper Former2 Helper
ID fhejmeojlbhfhjndnkkleooeejklmigi
Официальный URL https://chromewebstore.google.com/detail/former2-helper/fhejmeojlbhfhjndnkkleooeejklmigi
Описание Helps avoid CORS issues with former2.com
Размер файла 1.6 MB
Количество установок 10,813
Текущая Версия 1.66
Последнее Обновление 2023-12-15
Дата публикации 2020-06-17
Рейтинг 4.83/5 Всего 6 оценок
Разработчик Ian Mckay
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности http://files.ian.mn/privacy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Former2 Helper",
    "version": "1.66",
    "manifest_version": 3,
    "description": "Helps avoid CORS issues with former2.com",
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "background": {
        "service_worker": "bg.js"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "host_permissions": [
        "https:\/\/*.aws.amazon.com\/*",
        "https:\/\/*.amazonaws.com\/*",
        "https:\/\/*.amazonaws.com.cn\/*",
        "https:\/\/developer.amazon.com\/*",
        "http:\/\/localhost:4566\/*",
        "http:\/\/*.localhost:4566\/*"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/former2.com\/*",
            "https:\/\/*.former2.com\/*",
            "http:\/\/127.0.0.1\/*",
            "https:\/\/127.0.0.1\/*",
            "http:\/\/localhost\/*",
            "https:\/\/localhost\/*"
        ]
    }
}