Steam Owned
Checks if you own a game on Steam on various websites
Steam Ownedคืออะไร?
Steam Owned เป็นส่วนขยายของ Chrome ที่พัฒนาโดย niknah และคุณลักษณะหลักของมันคือ "Checks if you own a game on Steam on various websites"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Steam Owned
ดาวน์โหลดไฟล์ส่วนขยาย Steam Owned ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Checks if you already have a game in Steam, Epic, GOG library, itch.io
Works on many websites. https://alexa.weezeewig.com/SteamOwned/SupportedWebsites.html
This extension only looks at your list of games and wishlists. This information is kept on your computer and not sent anywhere. You can see which sites it has access to in "settings" > "extensions" > "details"
To use...
Go to one of the supported websites.
Click on the "library" icon on the top right of the browser.
Tell me if you want any other sites added.
Warning: double check on steam first.
It will be incorrect if the game name is different than the same game on steam. ie. "Train simulator" on Steam is "Train simulator 2016" on humblebundle. "ABZÛ" on Steam is ABZU on humblebundle. etc...
It won't work if people put things in blocks because we can't insert any links/images into those blocks.
2023-08-06: Fixed EPIC games support
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Steam Owned |
ID | mekmhcnicomfjdcmpgeeihnaaidmllib |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/steam-owned/mekmhcnicomfjdcmpgeeihnaaidmllib |
คำอธิบาย | Checks if you own a game on Steam on various websites |
ขนาดไฟล์ | 17.67 KB |
จำนวนการติดตั้ง | 251 |
เวอร์ชันปัจจุบัน | 0.0.15 |
อัปเดตครั้งล่าสุด | 2023-09-06 |
วันที่เผยแพร่ | 2022-03-20 |
คะแนน | 3.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | niknah |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://forms.gle/DNk1u1b97AecB2c3A |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Steam Owned", "description": "Checks if you own a game on Steam on various websites", "version": "0.0.15", "manifest_version": 3, "icons": { "128": "icon_128.png" }, "permissions": [ "storage", "scripting" ], "content_scripts": [ { "matches": [ "https:\/\/store.steampowered.com\/*", "https:\/\/steamcommunity.com\/*" ], "run_at": "document_idle", "js": [ "SteamOwned.js" ] }, { "matches": [ "https:\/\/barter.vg\/*", "https:\/\/eneba.com\/*", "https:\/\/*.eneba.com\/*", "https:\/\/store.epicgames.com\/*", "https:\/\/fanatical.com\/*", "https:\/\/*.fanatical.com\/*", "https:\/\/g2a.com\/*", "https:\/\/*.g2a.com\/*", "https:\/\/www.gog.com\/*", "https:\/\/humblebundle.com\/*", "https:\/\/*.humblebundle.com\/*", "https:\/\/itch.io\/*", "https:\/\/*.reddit.com\/r\/*Game*", "https:\/\/*.reddit.com\/r\/*game*", "https:\/\/*.reddit.com\/r\/Steam*", "https:\/\/*.reddit.com\/r\/humblebundle*", "https:\/\/reddit.com\/r\/steam*", "https:\/\/*.reddit.com\/r\/IGSRep*", "https:\/\/store.steampowered.com\/*", "https:\/\/www.steamtrades.com\/*" ], "run_at": "document_idle", "js": [ "SteamOwnedButton.js" ] } ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html" }, "host_permissions": [ "https:\/\/barter.vg\/*", "https:\/\/eneba.com\/*", "https:\/\/fanatical.com\/*", "https:\/\/*.fanatical.com\/*", "https:\/\/*.eneba.com\/*", "https:\/\/epicgames.com\/*", "https:\/\/*.epicgames.com\/*", "https:\/\/g2a.com\/*", "https:\/\/*.g2a.com\/*", "https:\/\/www.gog.com\/en\/account", "https:\/\/www.gog.com\/en\/account\/wishlist", "https:\/\/humblebundle.com\/*", "https:\/\/*.humblebundle.com\/*", "https:\/\/itch.io\/*", "https:\/\/*.reddit.com\/*", "https:\/\/reddit.com\/*", "https:\/\/store.steampowered.com\/wishlist\/*", "https:\/\/api.steampowered.com\/*", "https:\/\/www.steamtrades.com\/*" ] } |