Three Island

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

Cos'è Three Island?

Three Island è un'estensione di Chrome sviluppata da PartMan, e la sua funzione principale è "A Chrome extension for Pokémon Showdown that offers a seamless Poképaste experience.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Three Island

Scarica i file di estensione Three Island in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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)                    

Informazioni di Base sull'Estensione

Nome Three Island Three Island
ID glhggmffomgbggeobkijjhojkjopfpho
URL Ufficiale https://chromewebstore.google.com/detail/three-island/glhggmffomgbggeobkijjhojkjopfpho
Descrizione A Chrome extension for Pokémon Showdown that offers a seamless Poképaste experience.
Dimensione del File 126 KB
Conteggio Installazioni 311
Versione Corrente 1.4.2
Ultimo Aggiornamento 2023-05-05
Data di Pubblicazione 2021-11-06
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore PartMan
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/PartMan7/Three-Island
URL della Pagina di Aiuto https://github.com/PartMan7/Three-Island/issues
Lingue Supportate 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": [
                ""
            ]
        }
    ]
}