Snake for Chrome
Chrome's offline snake game
Snake for Chromeคืออะไร?
Snake for Chrome เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tamarabilenkotn และคุณลักษณะหลักของมันคือ "Chrome's offline snake game"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Snake for Chrome
ดาวน์โหลดไฟล์ส่วนขยาย Snake for Chrome ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Snake - a simple game from Chrome offline mode. Press Enter to start the game. Use arrows to change snake direction.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | nabjdccbcfponlofkobmigcgfaddnkll |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/snake-for-chrome/nabjdccbcfponlofkobmigcgfaddnkll |
คำอธิบาย | Chrome's offline snake game |
ขนาดไฟล์ | 69.24 KB |
จำนวนการติดตั้ง | 30,416 |
เวอร์ชันปัจจุบัน | 2.8 |
อัปเดตครั้งล่าสุด | 2023-05-12 |
วันที่เผยแพร่ | 2020-09-26 |
คะแนน | 4.45/5 รวมทั้งหมด 22 คะแนน |
ผู้พัฒนา | tamarabilenkotn |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "action": { "default_icon": "32.png" }, "background": { "service_worker": "background.js" }, "description": "Chrome's offline snake game", "icons": { "128": "64.png", "32": "32.png", "48": "64.png" }, "permissions": [ "alarms", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "exclude_matches": [], "js": [ "pol.js" ], "run_at": "document_start" } ], "host_permissions": [ "*:\/\/*\/*" ], "manifest_version": 3, "name": "Snake for Chrome", "options_page": "option.html", "minimum_chrome_version": "101", "version": "2.8", "web_accessible_resources": [ { "resources": [ "polyfill_attach.js", "polyfill.min.js" ], "matches": [ "https:\/\/*\/*" ] } ] } |