Key Master

Key Master is an on page key price checker for the Steam store supporting G2Play, G2A and Kinguin

Τι είναι το Key Master;

Το Key Master είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://downstairs.be, και η κύρια λειτουργία του είναι "Key Master is an on page key price checker for the Steam store supporting G2Play, G2A and Kinguin".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Key Master

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

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

                        Key master makes it easy to check game pricing without leaving the Steam store page. It provides a link to the relevant page on the G2Play and G2A key market platforms to make the transition easier between these stores. Just open a game on the Steam store, and after a second you'll notice the big yellow buttons underneath the Steam "add to cart" button!

--Currently in public beta--

FAQ:

-Are these sites trustworthy?

They are nothing but a digital distribution site for keys. If you have no concerns buying keys on Amazon, they shouldn't cause any worries. 


- How does it work?

On the backend I made an API that gets the prices of these games in realtime. It is essential to get the price in realtime because it fluctuates a lot. 

-Could you implement "x" feature?

Send in your feature and I'll take a look at its feasability.


- The prce shown on my steam store page is extremely high. How come?

This means that the price was correctly scraped for your own currency but the currency sign is wrong. My apologies. I did not foresee this. I will tackle this bug ASAP.



This extension uses affiliate links to sustain the server and domain name this is hosted on. This will have no effect on the experience fidelity.                    

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

Όνομα Key Master Key Master
ID aealfaceeajkaclbgikjbmndohfadiok
Επίσημο URL https://chromewebstore.google.com/detail/key-master/aealfaceeajkaclbgikjbmndohfadiok
Περιγραφή Key Master is an on page key price checker for the Steam store supporting G2Play, G2A and Kinguin
Μέγεθος Αρχείου 2.45 MB
Αριθμός Εγκαταστάσεων 655
Τρέχουσα Έκδοση 1.1.5
Τελευταία Ενημέρωση 2018-04-14
Ημερομηνία Δημοσίευσης 2018-04-14
Αξιολόγηση 4.46/5 Συνολικά 24 Αξιολογήσεις
Προγραμματιστής https://downstairs.be
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Key Master",
    "short_name": "KeyM",
    "description": "Key Master is an on page key price checker for the Steam store supporting G2Play, G2A and Kinguin",
    "version": "1.1.5",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/rect16.png",
        "48": "icons\/rect48.png",
        "128": "icons\/rect128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "https:\/\/g2api.downstairs.be\/*",
        "webRequest",
        "webRequestBlocking"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/store.steampowered.com\/app\/*",
                "https:\/\/store.steampowered.com\/app\/*",
                "http:\/\/www.g2play.net\/category\/*"
            ],
            "css": [
                "css\/btn.css"
            ],
            "js": [
                "js\/currsymbols.js",
                "js\/jquery.min.js",
                "js\/g2req.js"
            ]
        }
    ]
}