GeoGuessr timer
This extension adds timers to GeoGuessr score bar
GeoGuessr timerとは何ですか?
GeoGuessr timerはfabrice404によって開発されたChromeの拡張機能で、その主な機能は「This extension adds timers to GeoGuessr score bar」です。
拡張機能のスクリーンショット
GeoGuessr timer拡張機能のCRXファイルをダウンロード
GeoGuessr timer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension adds timers to the score bar of GeoGuessr. - Rounds mode: one timer for each round, and one for the total time. - Streak: one timer for the current round, and one for the total time Made by fabrice404, updated by oh2mp
拡張機能の基本情報
名前 | GeoGuessr timer |
ID | cpkgpifaafehooacgbigplegdgbnhcbi |
公式URL | https://chromewebstore.google.com/detail/geoguessr-timer/cpkgpifaafehooacgbigplegdgbnhcbi |
説明 | This extension adds timers to GeoGuessr score bar |
ファイルサイズ | 26.67 KB |
インストール数 | 1,580 |
現在のバージョン | 1.1.2 |
最終更新日 | 2023-11-09 |
公開日 | 2019-08-22 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | fabrice404 |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/fabrice404/geoguessr-timer |
ヘルプページのURL | https://github.com/fabrice404/geoguessr-timer/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GeoGuessr timer", "version": "1.1.2", "description": "This extension adds timers to GeoGuessr score bar", "manifest_version": 3, "permissions": [ "storage" ], "content_scripts": [ { "js": [ "src\/play.js" ], "matches": [ "https:\/\/geoguessr.com\/*", "https:\/\/www.geoguessr.com\/*" ], "run_at": "document_start" } ], "icons": { "16": "img\/icon-16.png", "32": "img\/icon-32.png", "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "options_ui": { "page": "src\/settings.html" }, "action": { "default_title": "GeoGuessr Timer", "default_popup": "src\/settings.html" } } |