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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension adds functionality such as custom hunting, shiny highlighting, map locations & pokemon list to pokemongods.com"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Pokemon Gods extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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\/*" ] } ] } |