BAND Members Exporter

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

What is BAND Members Exporter?

BAND Members Exporter is a Chrome extension developed by fallroot, and its main feature is "밴드 서비스에서 멤버 목록을 CSV, JSON, TSV 등의 파일로 내려받는 구글 크롬 확장 프로그램".

Extension Screenshots

screenshot

Download BAND Members Exporter Extension CRX File

Download BAND Members Exporter 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

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

Extension Basic Information

Name BAND Members Exporter BAND Members Exporter
ID fgogpjacddelfhkpagfjcgoplgbhghca
Official URL https://chromewebstore.google.com/detail/band-members-exporter/fgogpjacddelfhkpagfjcgoplgbhghca
Description 밴드 서비스에서 멤버 목록을 CSV, JSON, TSV 등의 파일로 내려받는 구글 크롬 확장 프로그램
File Size 29.8 KB
Installation Count 61
Current Version 0.1.0
Last Updated 2019-10-17
Publish Date 2019-10-16
Rating 4.00/5 Total 1 Ratings
Developer fallroot
Email [email protected]
Payment Type free
Extension Website https://github.com/fallroot/chrome-band-member-exporter
Supported Languages 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"
    ]
}