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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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