Three Island

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

Qu'est-ce que Three Island ?

Three Island est une extension Chrome développée par PartMan, et sa fonction principale est "A Chrome extension for Pokémon Showdown that offers a seamless Poképaste experience.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Three Island

Téléchargez les fichiers d'extension Three Island au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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)                    

Informations de Base sur l'Extension

Nom Three Island Three Island
ID glhggmffomgbggeobkijjhojkjopfpho
URL Officiel https://chromewebstore.google.com/detail/three-island/glhggmffomgbggeobkijjhojkjopfpho
Description A Chrome extension for Pokémon Showdown that offers a seamless Poképaste experience.
Taille du Fichier 126 KB
Nombre d'Installations 311
Version Actuelle 1.4.2
Dernière Mise à Jour 2023-05-05
Date de Publication 2021-11-06
Évaluation 5.00/5 Total 2 Évaluations
Développeur PartMan
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/PartMan7/Three-Island
URL de la Page d'Aide https://github.com/PartMan7/Three-Island/issues
Langues Prises en Charge 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": [
                ""
            ]
        }
    ]
}