Three Island

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

O que é Three Island?

Three Island é uma extensão do Chrome desenvolvida por PartMan, e sua principal característica é "A Chrome extension for Pokémon Showdown that offers a seamless Poképaste experience.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Three Island

Baixe arquivos de extensão Three Island no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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)                    

Informações Básicas da Extensão

Nome Three Island Three Island
ID glhggmffomgbggeobkijjhojkjopfpho
URL Oficial https://chromewebstore.google.com/detail/three-island/glhggmffomgbggeobkijjhojkjopfpho
Descrição A Chrome extension for Pokémon Showdown that offers a seamless Poképaste experience.
Tamanho do Arquivo 126 KB
Contagem de Instalações 311
Versão Atual 1.4.2
Última Atualização 2023-05-05
Data de Publicação 2021-11-06
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor PartMan
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/PartMan7/Three-Island
URL da Página de Ajuda https://github.com/PartMan7/Three-Island/issues
Idiomas Suportados 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": [
                ""
            ]
        }
    ]
}