Worm Clan
This extension will save the server used by Wormate.io
什么是Worm Clan?
Worm Clan是由rostomdz开发的Chrome扩展程序,该扩展的主要功能是“This extension will save the server used by Wormate.io”。
扩展截图
下载Worm Clan扩展crx文件
下载Worm Clan扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Worm Clan extension This extension works on Wormate.io , it's a successful online game with dynamic storyline and fun graphics. This extension enables you to create clans and select rooms.
扩展基本信息
名称 | Worm Clan |
ID | lcdigmabpbapaekemeajepdbanmhfooc |
官方URL | https://chromewebstore.google.com/detail/worm-clan/lcdigmabpbapaekemeajepdbanmhfooc |
简介 | This extension will save the server used by Wormate.io |
文件大小 | 51.42 KB |
安装次数 | 299 |
当前版本 | 0.0.0.1 |
更新时间 | 2021-06-10 |
上架时间 | 2021-06-10 |
评分 | 5.00/5 共1次评分 |
开发者 | rostomdz |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://wormclan.com |
帮助页面URL | https://wormclan.com |
隐私政策页面URL | https://wormclan.com/privacy |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Worm Clan", "description": "This extension will save the server used by Wormate.io", "version": "0.0.0.1", "background": { "persistent": true, "scripts": [ "background.js" ] }, "content_scripts": [ { "js": [ "content.js" ], "run_at": "document_end", "matches": [ "*:\/\/*.wormate.io\/*" ] } ], "browser_action": { "default_icon": "popup\/icon.png", "default_popup": "popup\/popup.html" }, "web_accessible_resources": [ "content.json", "Contents\/css\/bootstrap.min.css", "Contents\/js\/bootstrap.bundle.min.js", "settings_loader.js" ], "permissions": [ "tabs", "storage", "webRequest", "webRequestBlocking", "*:\/\/*.wormate.io\/*" ] } |