Steam Store Tooltip

Show Steam games information when hovering the store links.

Τι είναι το Steam Store Tooltip;

Το Steam Store Tooltip είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Gabriel Schulte, και η κύρια λειτουργία του είναι "Show Steam games information when hovering the store links.".

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

screenshot
screenshot
screenshot

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

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

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

                        ⚡️ Quickly see all the relevant game's info in a tooltip:
  ▫️ price and discount
  ▫️ screenshots
  ▫️ categories
  ▫️ reviews positive rating
  ▫️ wishlisted or owned game (available if you're logged in on the browser)
  ▫️ description
  ▫️ release date
  ▫️ platforms
  ▫️ user tags

⚡️ Choose the store language
⚡️ Choose the store currency (available if you're not logged in on the browser)
⚡️ Activate the tooltip with a chosen key

⭐️ Free and open source                    

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

Όνομα Steam Store Tooltip Steam Store Tooltip
ID loekhehhklndobiamaakjkefleckboon
Επίσημο URL https://chromewebstore.google.com/detail/steam-store-tooltip/loekhehhklndobiamaakjkefleckboon
Περιγραφή Show Steam games information when hovering the store links.
Μέγεθος Αρχείου 138 KB
Αριθμός Εγκαταστάσεων 34
Τρέχουσα Έκδοση 1.2.0
Τελευταία Ενημέρωση 2022-05-24
Ημερομηνία Δημοσίευσης 2020-01-27
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Gabriel Schulte
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/gabrielmdu/Steam-Store-Tooltip
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/gabrielmdu/Steam-Store-Tooltip/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Steam Store Tooltip",
    "version": "1.2.0",
    "description": "Show Steam games information when hovering the store links.",
    "homepage_url": "https:\/\/github.com\/gabrielmdu\/Steam-Store-Tooltip",
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/store.steampowered.com\/*"
            ],
            "css": [
                "font\/fonts.css"
            ],
            "js": [
                "js\/steamstoretooltip.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "options_page": "html\/options.html",
    "web_accessible_resources": [
        {
            "resources": [
                "font\/*.woff"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "manifest_version": 3
}