PokemonGo Egg Probability

Extension for customizable silphRoad Egg probability!

Τι είναι το PokemonGo Egg Probability;

Το PokemonGo Egg Probability είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Madhu Sigdel, και η κύρια λειτουργία του είναι "Extension for customizable silphRoad Egg probability!".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης PokemonGo Egg Probability

Λήψη αρχείων επέκτασης PokemonGo Egg Probability σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Version 1.0.6 Update:
Bug fix

Version 1.0.5 Update:
When silph road research is in progress during egg reshuffling, the extension show inaccurate ta. The update will now show those data anymore. Instead, the extension will show the number of your pokemon in each category.

Version 1.0.4 Update:
This extension will also show the probability of hatching your choice at least once when you walk 10 km.
Proabability calculation : 1 - (1-P)^(10/d) where P is  the total probability for that egg group and d is the egg distance. Example: For 2km egg with probability with 20%, the formula would be  1 - ( 1-0.2)^5.
In addition to this, the extension will also show the overall probability of hatching your choice at least once for 10km walk when you spin a pokestop.

-----------------------------------------------------------------------------------

Version 1.0.3 Update:
This extension will also show the overall probability of hatching your choice when you spin a pokestop. The extension will alert that information with  "Combined Pokemon with Pokestop Probability(2km+5km+10km)" text.

-----------------------------------------------------------------------------------
This adds your customization to TheSilphRoad egg data.  

https://thesilphroad.com/egg-distances

You can select which pokemon would you like to hatch and it will show you percentage of hatching your choices. This will give you an idea of which egg(2km, 5km, 7km, 10km) is better to hatch. 

Few points worth noting:
1. There is no new egg data. All data used for calculations are already in the webpage. Thank you TheSilphRoad researcher for providing the data.
2. The extension will save your pokemon choices when you click "Save and Calculate Best Egg For You" button. Even you refresh the page, all your pokemon choices will be selected using previous data. You do not have to reselect all your pokemon choices unless you clear your web storage.
3. TheSilphRoad researcher updates their data frequently. So, update yourself and find better pokemon egg to incubate. Happy Hatching.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα PokemonGo Egg Probability PokemonGo Egg Probability
ID fjkmggaedbmipdngeldgldppakldfgki
Επίσημο URL https://chrome.google.com/webstore/detail/pokemongo-egg-probability/fjkmggaedbmipdngeldgldppakldfgki
Περιγραφή Extension for customizable silphRoad Egg probability!
Μέγεθος Αρχείου 13.71 KB
Αριθμός Εγκαταστάσεων 96
Τρέχουσα Έκδοση 1.0.7
Τελευταία Ενημέρωση 2019-05-25
Ημερομηνία Δημοσίευσης 2019-05-25
Αξιολόγηση 1.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Madhu Sigdel
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PokemonGo Egg Probability",
    "version": "1.0.7",
    "description": "Extension for customizable silphRoad Egg probability!",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/thesilphroad.com\/egg-distances"
            ],
            "js": [
                "probability.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon\/egg_game_go_hatching_play_pokemon_icon_16.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon\/egg_game_go_hatching_play_pokemon_icon_16.png",
        "48": "icon\/egg_game_go_hatching_play_pokemon_icon_48.png",
        "128": "icon\/egg_game_go_hatching_play_pokemon_icon_128.png"
    },
    "manifest_version": 2
}