BAND Members Exporter

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

Cos'è BAND Members Exporter?

BAND Members Exporter è un'estensione di Chrome sviluppata da fallroot, e la sua funzione principale è "밴드 서비스에서 멤버 목록을 CSV, JSON, TSV 등의 파일로 내려받는 구글 크롬 확장 프로그램".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione BAND Members Exporter

Scarica i file di estensione BAND Members Exporter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome BAND Members Exporter BAND Members Exporter
ID fgogpjacddelfhkpagfjcgoplgbhghca
URL Ufficiale https://chromewebstore.google.com/detail/band-members-exporter/fgogpjacddelfhkpagfjcgoplgbhghca
Descrizione 밴드 서비스에서 멤버 목록을 CSV, JSON, TSV 등의 파일로 내려받는 구글 크롬 확장 프로그램
Dimensione del File 29.8 KB
Conteggio Installazioni 61
Versione Corrente 0.1.0
Ultimo Aggiornamento 2019-10-17
Data di Pubblicazione 2019-10-16
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore fallroot
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/fallroot/chrome-band-member-exporter
Lingue Supportate 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"
    ]
}