Pokemon Gods extension

This extension adds functionality such as custom hunting, shiny highlighting, map locations & pokemon list to pokemongods.com

Pokemon Gods extension란 무엇입니까?

Pokemon Gods extension은(는) Eklavya11에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension adds functionality such as custom hunting, shiny highlighting, map locations & pokemon list to pokemongods.com"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Pokemon Gods extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Current version will add these features:

+ Pokemon location guide
- Access any map's spawn list without the need of visiting it
- Displays the encounter type (rare,uncommon,rare)

+ Catching helper
- Sound is played when a shiny/preferred pokemon is ecountered
- Custom encounter box(text,backgrounds,buttons) when pokemon is shiny or from hunt list, so you won't skip them :)

+ Fix Battle loading and Menu/Option selection

+ Clean User Interface
- Implements command-palette 
- New & modern buttons
- Chat customizations (next version)                    

확장 프로그램 기본 정보

이름 Pokemon Gods extension Pokemon Gods extension
ID cieamaofdopepocajchobaekjknjcflp
공식 URL https://chromewebstore.google.com/detail/pokemon-gods-extension/cieamaofdopepocajchobaekjknjcflp
설명 This extension adds functionality such as custom hunting, shiny highlighting, map locations & pokemon list to pokemongods.com
파일 크기 1.1 MB
설치 횟수 308
현재 버전 2.0.1
최근 업데이트 2023-10-07
출시 날짜 2023-03-30
평점 5.00/5 총 1 개의 평점
개발자 Eklavya11
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Eklavya-11/PL-Extension
도움말 페이지 URL https://discord.gg/Rqnj4hp44d
개인정보 보호 정책 페이지 URL https://github.com/Eklavya-11/PL-Extension/blob/main/privacy_policy.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Pokemon Gods extension",
    "description": "This extension adds functionality such as custom hunting, shiny highlighting, map locations & pokemon list to pokemongods.com",
    "version": "2.0.1",
    "icons": {
        "16": "\/assets\/logo\/logo-16.png",
        "48": "\/assets\/logo\/logo-48.png",
        "128": "\/assets\/logo\/logo-128.png"
    },
    "action": {
        "default_title": "Pokemon Gods extension",
        "default_popup": "\/interface\/main.html"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "service-worker.js"
    },
    "content_scripts": [
        {
            "js": [
                "\/library\/jquery\/jquery-2.2.3.min.js",
                "\/library\/jquery\/jquery-ui.js",
                "\/js\/gameFunctions\/commandPalette.js",
                "\/js\/modules\/explore.js"
            ],
            "matches": [
                "https:\/\/pokemongods.com\/game\/explore",
                "https:\/\/www.pokemongods.com\/game\/explore"
            ]
        },
        {
            "js": [
                "\/library\/jquery\/jquery-2.2.3.min.js",
                "\/library\/jquery\/jquery-ui.js",
                "\/js\/modules\/team.js"
            ],
            "matches": [
                "https:\/\/pokemongods.com\/game\/monster",
                "https:\/\/www.pokemongods.com\/game\/monster"
            ]
        },
        {
            "js": [
                "\/library\/jquery\/jquery-2.2.3.min.js",
                "\/library\/jquery\/jquery-ui.js",
                "\/js\/modules\/themes.js"
            ],
            "matches": [
                "https:\/\/pokemongods.com\/*",
                "https:\/\/www.pokemongods.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/css\/themes\/BlackRedTheme.css",
                "\/css\/themes\/BlueTheme.css",
                "\/css\/themes\/CoffeeTheme.css",
                "\/css\/themes\/DarkTheme.css",
                "\/css\/themes\/GreenTheme.css",
                "\/css\/themes\/LightTheme.css",
                "\/css\/themes\/PinkTheme.css",
                "\/css\/themes\/PurpleTheme.css"
            ],
            "matches": [
                "https:\/\/pokemongods.com\/*",
                "https:\/\/www.pokemongods.com\/*"
            ]
        }
    ]
}