Game Times

See 'HowLongToBeat' gameplay times within various gaming web stores.

Game Timesคืออะไร?

Game Times เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Syphen และคุณลักษณะหลักของมันคือ "See 'HowLongToBeat' gameplay times within various gaming web stores."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Game Times

ดาวน์โหลดไฟล์ส่วนขยาย Game Times ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension will add play through times from HowLongToBeat onto various pages from the Steam, Epic, Origin, and GOG web stores.

Hovering over a time will show a table of other completion times while clicking a time will load the HowLongToBeat game page in a separate tab.

v 1.0.14
Fixed more issues with Steam not loading game times.

v 1.0.13
Fixed issues with Steam not loading game times. Included the main 'Featured and Recommended' section.

v 1.0.12
Fixed an issue with the new mutation observer on Steam Wishlist pages (and cleaned up mutation observer code)

v 1.0.11
Removing debug code

v 1.0.10
Added steam sale capsules and adjusted times to load with mutation observer

v 1.0.9
Fixed issue with not getting local data for games when available                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Game Times Game Times
ID mbejdmlaedocdhjmkckljjpaebmdcnih
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/game-times/mbejdmlaedocdhjmkckljjpaebmdcnih
คำอธิบาย See 'HowLongToBeat' gameplay times within various gaming web stores.
ขนาดไฟล์ 45.66 KB
จำนวนการติดตั้ง 484
เวอร์ชันปัจจุบัน 1.0.14
อัปเดตครั้งล่าสุด 2021-10-12
วันที่เผยแพร่ 2020-09-30
คะแนน 2.43/5 รวมทั้งหมด 14 คะแนน
ผู้พัฒนา Syphen
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Game Times",
    "version": "1.0.14",
    "description": "See 'HowLongToBeat' gameplay times within various gaming web stores.",
    "icons": {
        "16": "icon_16.png",
        "32": "icon_32.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "permissions": [
        "storage",
        "https:\/\/dev.syphen.org\/gaming\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/store.steampowered.com\/*",
                "*:\/\/www.epicgames.com\/store\/*",
                "*:\/\/www.gog.com\/*",
                "*:\/\/www.origin.com\/usa\/en-us\/store\/*",
                "*:\/\/www.fanatical.com\/*"
            ],
            "js": [
                "jquery.js",
                "content.js"
            ]
        }
    ],
    "manifest_version": 2
}