TarkovGenie
MapGenie POIs presets, Wiki cleaner. Planning to add custom POIs selection in future
什么是TarkovGenie?
TarkovGenie是由Souris ET开发的Chrome扩展程序,该扩展的主要功能是“MapGenie POIs presets, Wiki cleaner. Planning to add custom POIs selection in future”。
扩展截图
下载TarkovGenie扩展crx文件
下载TarkovGenie扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Tarkov Helper extension which is making Tarkov fandom wiki more readable, and also auto select POIs on MapGenie maps and hide disturbing sidebars and toolbars. Plan is to allow you to check/uncheck POIs, for now it's statical by my opinions.
扩展基本信息
名称 | TarkovGenie |
ID | mmgdhlfkhegdnekkioecjnnhgnplgdoa |
官方URL | https://chromewebstore.google.com/detail/tarkovgenie/mmgdhlfkhegdnekkioecjnnhgnplgdoa |
简介 | MapGenie POIs presets, Wiki cleaner. Planning to add custom POIs selection in future |
文件大小 | 37.42 KB |
安装次数 | 90 |
当前版本 | 0.2 |
更新时间 | 2021-12-18 |
上架时间 | 2021-12-13 |
评分 | 5.00/5 共1次评分 |
开发者 | Souris ET |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TarkovGenie", "description": "MapGenie POIs presets, Wiki cleaner. Planning to add custom POIs selection in future", "version": "0.2", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/mapgenie.io\/tarkov\/maps\/*" ], "js": [ "maphook.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/mapgenie.io\/tarkov\/maps\/*" ], "js": [ "jquery-3.6.0.min.js", "content.js" ] }, { "matches": [ "https:\/\/escapefromtarkov.fandom.com\/wiki\/*" ], "js": [ "jquery-3.6.0.min.js", "wikiclean.js" ] } ], "action": { "default_popup": "popup.html" } } |