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"
            ]
        }
    ]
}