Show Great on Deck on Steam
See what Games are verified for the Steam Deck and which Medal they have on ProtonDB in the Steam Store.
什麼是Show Great on Deck on Steam?
Show Great on Deck on Steam是由cptpiepmatz開發的Chrome擴展程式,該擴展的主要功能是“See what Games are verified for the Steam Deck and which Medal they have on ProtonDB in the Steam Store.”。
擴展截圖
下載Show Great on Deck on Steam擴展crx文件
下載Show Great on Deck on Steam擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
The Steam Store does not display the Steam Deck Verification Status on every page. This extension adds this status to a lot of pages, so you can see at a glance which games are compatible with the Deck. Furthermore the Verification Status is often not up-to-date. To solve this issue, the extension adds a medal from ProtonDB to the search results, front and app page. For more info, head over to the ReadMe on Github: https://github.com/cptpiepmatz/great-on-deck-search/tree/main#readme
擴展基本資訊
名稱 | Show Great on Deck on Steam |
ID | olagniaikhbmpdgghoifgloijcndfled |
官方網址 | https://chromewebstore.google.com/detail/show-great-on-deck-on-ste/olagniaikhbmpdgghoifgloijcndfled |
簡介 | See what Games are verified for the Steam Deck and which Medal they have on ProtonDB in the Steam Store. |
檔案大小 | 182 KB |
安裝次數 | 4,661 |
目前版本 | 1.5.0 |
更新時間 | 2023-08-08 |
上架時間 | 2022-07-11 |
評分 | 5.00/5 共 11 次評分 |
開發者 | cptpiepmatz |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/cptpiepmatz/great-on-deck-search |
說明頁面URL | https://github.com/cptpiepmatz/great-on-deck-search/issues |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Show Great on Deck on Steam", "description": "See what Games are verified for the Steam Deck and which Medal they have on ProtonDB in the Steam Store.", "version": "1.5.0", "manifest_version": 3, "background": { "service_worker": "out\/background.bundle.js" }, "content_scripts": [ { "matches": [ "https:\/\/store.steampowered.com\/*", "https:\/\/steamcommunity.com\/id\/*\/games*", "https:\/\/steamcommunity.com\/profiles\/*\/games*" ], "run_at": "document_end", "js": [ "out\/pages.bundle.js" ], "css": [ "out\/pages.bundle.css" ] } ], "permissions": [ "storage" ], "host_permissions": [ "https:\/\/store.steampowered.com\/*", "https:\/\/steamcommunity.com\/*", "https:\/\/www.protondb.com\/app\/*", "https:\/\/steamdeckhq.com\/*" ], "icons": { "16": "icon\/icon16.png", "32": "icon\/icon32.png", "48": "icon\/icon48.png", "128": "icon\/icon128.png" }, "action": { "default_popup": "src\/settings\/settings.html" } } |