Cloud Gaming Buttoneer

Automatically hides buttons on certain cloud gaming services.

Τι είναι το Cloud Gaming Buttoneer;

Το Cloud Gaming Buttoneer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Deathspike, και η κύρια λειτουργία του είναι "Automatically hides buttons on certain cloud gaming services.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Cloud Gaming Buttoneer

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

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

                        Xbox Cloud Gaming works well within Chrome-based browsers, but the two buttons on the top-left of the screen are both distracting and annoying. This extension aims to remedy that; the buttons are automatically hidden after mouse/keyboard inactivity, and will re-appear when you move your mouse. It's that simple.                    

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

Όνομα Cloud Gaming Buttoneer Cloud Gaming Buttoneer
ID bmapdieicgniiohhkfgpmafgfeileklk
Επίσημο URL https://chromewebstore.google.com/detail/cloud-gaming-buttoneer/bmapdieicgniiohhkfgpmafgfeileklk
Περιγραφή Automatically hides buttons on certain cloud gaming services.
Μέγεθος Αρχείου 9.12 KB
Αριθμός Εγκαταστάσεων 971
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2021-11-24
Ημερομηνία Δημοσίευσης 2021-11-23
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής Deathspike
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/Deathspike/xbox-cloud-gaming-buttoneer
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/Deathspike/xbox-cloud-gaming-buttoneer
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cloud Gaming Buttoneer",
    "description": "Automatically hides buttons on certain cloud gaming services.",
    "version": "1.0",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/016.png",
        "48": "icons\/048.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.xbox.com\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "inject-script.js"
            ]
        }
    ]
}