Controller Visualizer
An extension that adds a visualization of controller input to the page.
Controller Visualizerとは何ですか?
Controller Visualizerはthristhartによって開発されたChromeの拡張機能で、その主な機能は「An extension that adds a visualization of controller input to the page.」です。
拡張機能のスクリーンショット
Controller Visualizer拡張機能のCRXファイルをダウンロード
Controller Visualizer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Adds an overlay to a website that visualizes controller input; helpful for screen sharing or recording when navigating with a controller. Tested with Xbox and PlayStation controllers, but should work with any standard gamepad.
拡張機能の基本情報
名前 | Controller Visualizer |
ID | dccpiimcibicljpgnabghpbdjpglmhli |
公式URL | https://chromewebstore.google.com/detail/controller-visualizer/dccpiimcibicljpgnabghpbdjpglmhli |
説明 | An extension that adds a visualization of controller input to the page. |
ファイルサイズ | 68.19 KB |
インストール数 | 701 |
現在のバージョン | 1.2.0 |
最終更新日 | 2022-07-13 |
公開日 | 2022-07-02 |
評価 | 2.50/5 合計 2 レビュー |
開発者 | thristhart |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://tom.shea.at/ |
ヘルプページのURL | https://tom.shea.at/contact |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Controller Visualizer", "version": "1.2.0", "description": "An extension that adds a visualization of controller input to the page.", "icons": { "128": "icons\/icon128x128.png" }, "permissions": [ "activeTab", "scripting", "storage" ], "action": { "default_title": "Display Controller Visualizer" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "background": { "service_worker": "background.js", "type": "module" }, "web_accessible_resources": [ { "resources": [ "images\/*.png", "images\/**\/*.png", ".\/contentScript\/content.js" ], "matches": [ "https:\/\/*\/*" ] } ] } |