微信聊天机器人
运用于网页版微信的聊天机器人插件
Qu'est-ce que 微信聊天机器人 ?
微信聊天机器人 est une extension Chrome développée par sanebow, et sa fonction principale est "运用于网页版微信的聊天机器人插件".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension 微信聊天机器人
Téléchargez les fichiers d'extension 微信聊天机器人 au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
更新:支持最新版web微信 (即2015年9月之后的Angular.JS版) 微信网页版聊天机器人插件。 可指定机器人与特定联系人聊天。 可自定义聊天反应时间间隔。 机器人聊天与人工聊天可同时进行,互不影响。 计划加入功能: 自定义机器人接口 自定义指定关键词对应回复内容
Informations de Base sur l'Extension
Nom | 微信聊天机器人 |
ID | eljagiebemmlfdmcbloojmgighfhgmom |
URL Officiel | 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 | 运用于网页版微信的聊天机器人插件 |
Taille du Fichier | 21.41 KB |
Nombre d'Installations | 106 |
Version Actuelle | 0.2 |
Dernière Mise à Jour | 2015-10-04 |
Date de Publication | 2015-10-04 |
Évaluation | 3.50/5 Total 2 Évaluations |
Développeur | sanebow |
Type de Paiement | free |
Site Web de l'Extension | http://cuhk.me/wxBot |
URL de la Page d'Aide | https://github.com/sanebow/wxBot |
Langues Prises en Charge | 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" ] } |