GBots controller
This extension lets you control your GBots in agar.io
什么是GBots controller?
GBots controller是由gbots.ca开发的Chrome扩展程序,该扩展的主要功能是“This extension lets you control your GBots in agar.io”。
下载GBots controller扩展crx文件
下载GBots controller扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension lets you control your GBots in agar.io 扩展基本信息
| 名称 | |
| ID | ieoaddnkfidignkkolkphijlalgopipb |
| 官方URL | https://chrome.google.com/webstore/detail/gbots-controller/ieoaddnkfidignkkolkphijlalgopipb |
| 简介 | This extension lets you control your GBots in agar.io |
| 文件大小 | 107 KB |
| 安装次数 | 504 |
| 当前版本 | 0.0.5 |
| 更新时间 | 2016-09-12 |
| 上架时间 | 2016-09-12 |
| 评分 | 3.36/5 共33次评分 |
| 开发者 | gbots.ca |
| 付费类型 | free |
| 扩展官网 | http://gbots.io |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "GBots controller",
"short_name": "GBots",
"description": "This extension lets you control your GBots in agar.io",
"permissions": [
"http:\/\/*\/*",
"storage"
],
"manifest_version": 2,
"version": "0.0.5",
"icons": {
"128": "icons\/icon128.png",
"16": "icons\/icon16.png",
"48": "icons\/icon48.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/agar.io\/*",
"https:\/\/gbots.io\/*"
],
"js": [
"resource\/js\/jquery.js",
"resource\/js\/load.js"
],
"run_at": "document_start"
}
],
"browser_action": {
"default_icon": "icons\/icon16.png",
"default_title": "GBots controller"
},
"web_accessible_resources": [
"resource\/js\/socket.io.min.js",
"resource\/js\/bundle.js",
"resource\/js\/browser.js"
]
} | |