Shared Game Timer Overlay
Overlays controls for the Shared Game Timer.
什么是Shared Game Timer Overlay?
Shared Game Timer Overlay是由https://sharedgametimer.com开发的Chrome扩展程序,该扩展的主要功能是“Overlays controls for the Shared Game Timer.”。
扩展截图
下载Shared Game Timer Overlay扩展crx文件
下载Shared Game Timer Overlay扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The Shared Game Timer is a board game timer that is synchronized between players using their own devices (usually a phone) to control the timer. This chrome extension allows a simplified version of the timer controls to be overlaid a web page. This is meant to make it easier to use the timer when playing board games on e.g. Tabletopia. Check out the game timer at https://sharedgametimer.com . For details about this chrome extension, see https://sharedgametimer.com/online-gaming
扩展基本信息
名称 | Shared Game Timer Overlay |
ID | dbdhcoeobjfmenccobpoohkdkddiacoc |
官方URL | https://chromewebstore.google.com/detail/shared-game-timer-overlay/dbdhcoeobjfmenccobpoohkdkddiacoc |
简介 | Overlays controls for the Shared Game Timer. |
文件大小 | 49.28 KB |
安装次数 | 67 |
当前版本 | 2.6 |
更新时间 | 2022-03-08 |
上架时间 | 2021-03-28 |
开发者 | https://sharedgametimer.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://sharedgametimer.com |
帮助页面URL | https://sharedgametimer.com/tutorials |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Shared Game Timer Overlay", "description": "Overlays controls for the Shared Game Timer.", "version": "2.6", "icons": { "128": "icons\/default-128.png", "64": "icons\/default-64.png", "48": "icons\/default-48.png", "32": "icons\/default-32.png", "16": "icons\/default-16.png" }, "action": { "default_title": "Click to activate the Game Timer overlay" }, "background": { "service_worker": "sw.js" }, "permissions": [ "activeTab", "storage", "scripting" ], "offline_enabled": false, "commands": { "show-hide-log": { "suggested_key": { "default": "Alt+L" }, "description": "Show\/Hide Transaction Log" }, "show-hide-opponent-score": { "suggested_key": { "default": "Alt+O" }, "description": "Show\/Hide Opponent Scores" }, "transact-money": { "suggested_key": { "default": "Alt+M" }, "description": "Start Transaction (Money)" }, "transact-vp": { "suggested_key": { "default": "Alt+V" }, "description": "Start Transaction (VP)" } } } |