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 |
| Eメール | [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
} | |