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 |
官方網址 | 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 |
電子郵箱 | [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" } } |