Three Island

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

什么是Three Island?

Three Island是由PartMan开发的Chrome扩展程序,该扩展的主要功能是“A Chrome extension for Pokémon Showdown that offers a seamless Poképaste experience.”。

扩展截图

screenshot
screenshot
screenshot

下载Three Island扩展crx文件

下载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": [
                ""
            ]
        }
    ]
}