微信群发助手

帮您为每个好友群发消息,避免骚扰,暂定为为聊天列表里的人群发

What is 微信群发助手?

微信群发助手 is a Chrome extension developed by tianzhidao4422, and its main feature is "帮您为每个好友群发消息,避免骚扰,暂定为为聊天列表里的人群发".

Extension Screenshots

screenshot

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

                        原理

angular js 操作页面元素
坑

等哥写好了angular js 脚本群发成功后,发现插件运行的环境和页面运行的环境根本是隔离的,换言之插件根本取不到页面上的angular js对象,

再者就是 插件和页面该怎么通讯呢.

后期

群发消息:(加各种分组群发)(假如你是hr,一大波人需要你在微信回复 面试消息地点什么的,假如你要发个什么通知什么的)
个性化消息回复. (对于 一些常见问题的答案,比如你是某个活动方举办单位,就有人在某个你特别忙的时间点问你 时间 地点啊 具体安排啊什么的,)
自动问答 客服什么的
赞助

email:[email protected]                    

Extension Basic Information

Name 微信群发助手 微信群发助手
ID hligofaecgnkhjpboeoibmkhedmmnidc
Official URL https://chromewebstore.google.com/detail/%E5%BE%AE%E4%BF%A1%E7%BE%A4%E5%8F%91%E5%8A%A9%E6%89%8B/hligofaecgnkhjpboeoibmkhedmmnidc
Description 帮您为每个好友群发消息,避免骚扰,暂定为为聊天列表里的人群发
File Size 85.01 KB
Installation Count 54
Current Version 1.0.0
Last Updated 2016-05-16
Publish Date 2015-12-12
Rating 1.00/5 Total 1 Ratings
Developer tianzhidao4422
Email [email protected]
Payment Type free
Supported Languages zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "rocyuan",
    "background": {
        "scripts": [
            "data\/vendor\/reconnecting-websocket.js",
            "index.js"
        ]
    },
    "browser_action": {
        "default_icon": "data\/icons\/icon-o.png"
    },
    "content_scripts": [
        {
            "js": [
                "data\/vendor\/jquery-2.1.3.min.js",
                "data\/weixin.js"
            ],
            "matches": [
                "http:\/\/*.qq.com\/*",
                "https:\/\/*.qq.com\/*",
                "http:\/\/*.wechat.com\/*",
                "https:\/\/*.wechat.com\/*"
            ],
            "run_at": "document_idle"
        },
        {
            "js": [
                "data\/vendor\/jquery-2.1.3.min.js",
                "data\/danmu.js"
            ],
            "matches": [
                "file:\/\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/*.qq.com\/*",
                "https:\/\/*.qq.com\/*"
            ],
            "js": [
                "init.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "description": "\u5e2e\u60a8\u4e3a\u6bcf\u4e2a\u597d\u53cb\u7fa4\u53d1\u6d88\u606f,\u907f\u514d\u9a9a\u6270\uff0c\u6682\u5b9a\u4e3a\u4e3a\u804a\u5929\u5217\u8868\u91cc\u7684\u4eba\u7fa4\u53d1",
    "homepage_url": "http:\/\/data.rocyuan.com\/index.html",
    "icons": {
        "128": "data\/icons\/icon.png",
        "16": "data\/icons\/icon-16.png",
        "48": "data\/icons\/icon-64.png"
    },
    "manifest_version": 2,
    "name": "\u5fae\u4fe1\u7fa4\u53d1\u52a9\u624b",
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "notifications",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "version": "1.0.0",
    "web_accessible_resources": [
        "data\/wechatsend.js",
        "data\/icons\/rebot_48.png"
    ]
}