Gamefinder

Finds what games youtube video pages feature.

Gamefinderคืออะไร?

Gamefinder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Brancu Alexandru และคุณลักษณะหลักของมันคือ "Finds what games youtube video pages feature."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension allows you to view what game is featured in any video on most pages of youtube before clicking on it.                    

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

ชื่อ Gamefinder Gamefinder
ID jlgipnmimogpomfpobemgdddbfnkkdbp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gamefinder/jlgipnmimogpomfpobemgdddbfnkkdbp
คำอธิบาย Finds what games youtube video pages feature.
ขนาดไฟล์ 13.36 KB
จำนวนการติดตั้ง 29
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2023-01-18
วันที่เผยแพร่ 2022-09-16
ผู้พัฒนา Brancu Alexandru
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gamefinder",
    "description": "Finds what games youtube video pages feature.",
    "version": "1.0",
    "manifest_version": 3,
    "icons": {
        "128": "favicon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "scriptLoader.js"
            ]
        }
    ],
    "permissions": [],
    "host_permissions": [
        "https:\/\/*.youtube.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "subscriptions.js",
                "recommended.js",
                "home.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ]
}