微信聊天机器人
运用于网页版微信的聊天机器人插件
What is 微信聊天机器人?
微信聊天机器人 is a Chrome extension developed by sanebow, and its main feature is "运用于网页版微信的聊天机器人插件".
Extension Screenshots
Download 微信聊天机器人 Extension CRX File
Download 微信聊天机器人 extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
更新:支持最新版web微信 (即2015年9月之后的Angular.JS版) 微信网页版聊天机器人插件。 可指定机器人与特定联系人聊天。 可自定义聊天反应时间间隔。 机器人聊天与人工聊天可同时进行,互不影响。 计划加入功能: 自定义机器人接口 自定义指定关键词对应回复内容
Extension Basic Information
Name | 微信聊天机器人 |
ID | eljagiebemmlfdmcbloojmgighfhgmom |
Official URL | https://chromewebstore.google.com/detail/%E5%BE%AE%E4%BF%A1%E8%81%8A%E5%A4%A9%E6%9C%BA%E5%99%A8%E4%BA%BA/eljagiebemmlfdmcbloojmgighfhgmom |
Description | 运用于网页版微信的聊天机器人插件 |
File Size | 21.41 KB |
Installation Count | 106 |
Current Version | 0.2 |
Last Updated | 2015-10-04 |
Publish Date | 2015-10-04 |
Rating | 3.50/5 Total 2 Ratings |
Developer | sanebow |
Payment Type | free |
Extension Website | http://cuhk.me/wxBot |
Help Page URL | https://github.com/sanebow/wxBot |
Supported Languages | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "\u5fae\u4fe1\u804a\u5929\u673a\u5668\u4eba", "short_name": "wxBot", "description": "\u8fd0\u7528\u4e8e\u7f51\u9875\u7248\u5fae\u4fe1\u7684\u804a\u5929\u673a\u5668\u4eba\u63d2\u4ef6", "version": "0.2", "author": "X.B.", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/wx.qq.com\/*", "*:\/\/wx2.qq.com\/*" ], "js": [ "content.js" ] } ], "options_ui": { "page": "options.html", "chrome_style": true }, "page_action": { "default_icon": "icons\/icon128.png", "default_title": "\u5fae\u4fe1\u804a\u5929\u673a\u5668\u4eba" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "tabs", "storage" ] } |