Open in Steam

This extension allows the user to open a Steam website page directly in the Steam client.

Τι είναι το Open in Steam;

Το Open in Steam είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον PurplProto, και η κύρια λειτουργία του είναι "This extension allows the user to open a Steam website page directly in the Steam client.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Open in Steam

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

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

                        Tired of having to login on the Steam website all the time? This is where OIS can help you!

I feel the ability to open Steam pages in the Steam app should be something already on the Steam website. But it isn't, so I wanted to change that to make all our lives a little bit easier.

I'm just a guy who loves to write code. I'm only human, so there will likely be bugs somewhere. If you find any bugs, please report them to me (preferably on this project's Github issues page) with details of it and the page you were on at the time if relevant.                    

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

Όνομα Open in Steam Open in Steam
ID focbafnolmhmenikmjpddfdkjlodcinh
Επίσημο URL https://chromewebstore.google.com/detail/open-in-steam/focbafnolmhmenikmjpddfdkjlodcinh
Περιγραφή This extension allows the user to open a Steam website page directly in the Steam client.
Μέγεθος Αρχείου 455 KB
Αριθμός Εγκαταστάσεων 1,159
Τρέχουσα Έκδοση 1.3.1
Τελευταία Ενημέρωση 2018-09-27
Ημερομηνία Δημοσίευσης 2018-09-27
Αξιολόγηση 4.71/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής PurplProto
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Open in Steam",
    "short_name": "OIS",
    "description": "This extension allows the user to open a Steam website page directly in the Steam client.",
    "version": "1.3.1",
    "author": "PairedPrototype",
    "icons": {
        "15": "icons\/ois_15.png",
        "25": "icons\/ois_25.png",
        "63": "icons\/ois_63.png",
        "75": "icons\/ois_75.png",
        "83": "icons\/ois_83.png",
        "125": "icons\/ois_125.png",
        "128": "icons\/ois_128.png",
        "188": "icons\/ois_188.png",
        "250": "icons\/ois_250.png"
    },
    "permissions": [
        "https:\/\/sirs.pairedprototype.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/steamcommunity.com\/*",
                "*:\/\/store.steampowered.com\/*"
            ],
            "js": [
                "OpenInSteam\/index.js"
            ],
            "css": [
                "OpenInSteam\/index.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "icons\/*"
    ],
    "browser_action": {
        "default_icon": {
            "15": "icons\/ois_15.png",
            "25": "icons\/ois_25.png",
            "63": "icons\/ois_63.png",
            "75": "icons\/ois_75.png",
            "83": "icons\/ois_83.png",
            "125": "icons\/ois_125.png",
            "128": "icons\/ois_128.png",
            "188": "icons\/ois_188.png",
            "250": "icons\/ois_250.png"
        },
        "default_popup": "OISPopup\/Popup.html"
    }
}