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文件

下载Pokemon Gods extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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\/*"
            ]
        }
    ]
}