微信群发助手

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

Wat is 微信群发助手?

微信群发助手 is een Chrome-extensie ontwikkeld door tianzhidao4422, en de belangrijkste functie is "帮您为每个好友群发消息,避免骚扰,暂定为为聊天列表里的人群发".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie 微信群发助手

Download 微信群发助手-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        原理

angular js 操作页面元素
坑

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

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

后期

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

email:[email protected]                    

Basisinformatie over de Extensie

Naam 微信群发助手 微信群发助手
ID hligofaecgnkhjpboeoibmkhedmmnidc
Officiële 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
Beschrijving 帮您为每个好友群发消息,避免骚扰,暂定为为聊天列表里的人群发
Bestandsgrootte 85.01 KB
Aantal Installaties 54
Huidige Versie 1.0.0
Laatst Bijgewerkt 2016-05-16
Publicatiedatum 2015-12-12
Beoordeling 1.00/5 Totaal 1 Beoordelingen
Ontwikkelaar tianzhidao4422
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}