Three Island

A Chrome extension for Pokémon Showdown that offers a seamless Poképaste experience.

Что такое Three Island?

Three Island - это расширение Chrome, разработанное PartMan, и его основная функция - "A Chrome extension for Pokémon Showdown that offers a seamless Poképaste experience.".

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

screenshot
screenshot
screenshot

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

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

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

                        Three Island allows you to hover over PokéPaste URLs to preview their contents. It also supports importing teams with a single click, copying sets to the clipboard, and support in various displays (chatrooms, battle rooms, and PMs) as well as all official clients.

You can check out the codebase at https://github.com/PartMan7/Three-Island, and there's an FAQ in the README (https://github.com/PartMan7/Three-Island#frequently-asked-questions)                    

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

Название Three Island Three Island
ID glhggmffomgbggeobkijjhojkjopfpho
Официальный URL https://chromewebstore.google.com/detail/three-island/glhggmffomgbggeobkijjhojkjopfpho
Описание A Chrome extension for Pokémon Showdown that offers a seamless Poképaste experience.
Размер файла 126 KB
Количество установок 311
Текущая Версия 1.4.2
Последнее Обновление 2023-05-05
Дата публикации 2021-11-06
Рейтинг 5.00/5 Всего 2 оценок
Разработчик PartMan
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/PartMan7/Three-Island
URL страницы помощи https://github.com/PartMan7/Three-Island/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Three Island",
    "version": "1.4.2",
    "manifest_version": 3,
    "description": "A Chrome extension for Pok\u00e9mon Showdown that offers a seamless Pok\u00e9paste experience.",
    "homepage_url": "https:\/\/github.com\/PartMan7\/Three-Island",
    "icons": {
        "48": "icons\/three-island-48.png",
        "96": "icons\/three-island-96.png",
        "128": "icons\/three-island-128.png"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": "icons\/three-island-48.png",
        "default_title": "Three Island",
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/play.pokemonshowdown.com\/*",
                "*:\/\/*.psim.us\/*"
            ],
            "js": [
                "syringe.js"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/play.pokemonshowdown.com\/*",
        "*:\/\/*.psim.us\/*",
        "*:\/\/pokepast.es\/**"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "three-island.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}