BAND Members Exporter

밴드 서비스에서 멤버 목록을 CSV, JSON, TSV 등의 파일로 내려받는 구글 크롬 확장 프로그램

什么是BAND Members Exporter?

BAND Members Exporter是由fallroot开发的Chrome扩展程序,该扩展的主要功能是“밴드 서비스에서 멤버 목록을 CSV, JSON, TSV 등의 파일로 내려받는 구글 크롬 확장 프로그램”。

扩展截图

screenshot

下载BAND Members Exporter扩展crx文件

下载BAND Members Exporter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        밴드 서비스에서 멤버 목록을 CSV, JSON, TSV 등의 파일로 내려받는 구글 크롬 확장 프로그램                    

扩展基本信息

名称 BAND Members Exporter BAND Members Exporter
ID fgogpjacddelfhkpagfjcgoplgbhghca
官方URL https://chromewebstore.google.com/detail/band-members-exporter/fgogpjacddelfhkpagfjcgoplgbhghca
简介 밴드 서비스에서 멤버 목록을 CSV, JSON, TSV 등의 파일로 내려받는 구글 크롬 확장 프로그램
文件大小 29.8 KB
安装次数 61
当前版本 0.1.0
更新时间 2019-10-17
上架时间 2019-10-16
评分 4.00/5 共1次评分
开发者 fallroot
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/fallroot/chrome-band-member-exporter
支持的语言 en,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "version": "0.1.0",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/band.us\/band\/*\/member"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "default_locale": "ko",
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "page_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs"
    ]
}