Extenssr
'Extenssr - A browser extension for Geoguessr'
什么是Extenssr?
Extenssr是由Extenssr Developers开发的Chrome扩展程序,该扩展的主要功能是“'Extenssr - A browser extension for Geoguessr'”。
扩展截图
下载Extenssr扩展crx文件
下载Extenssr扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This is an extension for the browser based geography game Geoguessr.
Latest change log: https://gitlab.com/nonreviad/extenssr/-/blob/main/Changelog.md
This is a browser extension for the browser based map game Geoguessr.
Current functionality:
- show exact locations for completed Battle Royale rounds
- filter effects on the map
- bookmark locations as you find them on the map
- cursed game modes
Complete features list: https://gitlab.com/nonreviad/extenssr/-/blob/main/Readme.md 扩展基本信息
| 名称 | |
| ID | camiehngogdpflplmapknnjkeeofhfop |
| 官方URL | https://chromewebstore.google.com/detail/extenssr/camiehngogdpflplmapknnjkeeofhfop |
| 简介 | 'Extenssr - A browser extension for Geoguessr' |
| 文件大小 | 34.91 MB |
| 安装次数 | 2,692 |
| 当前版本 | 3.11.1 |
| 更新时间 | 2023-11-03 |
| 上架时间 | 2021-03-28 |
| 评分 | 4.33/5 共6次评分 |
| 开发者 | Extenssr Developers |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Extenssr",
"version": "3.11.1",
"description": "'Extenssr - A browser extension for Geoguessr'",
"icons": {
"48": "icons\/extenssr_48.png",
"128": "icons\/extenssr_128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.geoguessr.com\/*"
],
"run_at": "document_start",
"js": [
"content.bundle.js"
],
"css": [
"css\/styles.css",
"css\/xterm.css"
]
}
],
"permissions": [
"storage",
"unlimitedStorage"
],
"background": {
"service_worker": "worker.bundle.js"
},
"action": {
"default_popup": "popup.html"
},
"web_accessible_resources": [
{
"resources": [
"icons\/*.png",
"icons\/*.svg",
"inject_main.bundle.js",
"ai_worker.bundle.js",
"geojson_data\/*.geojson",
"models\/*",
"wasm\/*"
],
"matches": [
"https:\/\/www.geoguessr.com\/*"
]
}
],
"manifest_version": 3
} | |