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
官方網址 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": [
                ""
            ]
        }
    ]
}