BAND Members Exporter
밴드 서비스에서 멤버 목록을 CSV, JSON, TSV 등의 파일로 내려받는 구글 크롬 확장 프로그램
BAND Members Exporterとは何ですか?
BAND Members Exporterはfallrootによって開発されたChromeの拡張機能で、その主な機能は「밴드 서비스에서 멤버 목록을 CSV, JSON, TSV 등의 파일로 내려받는 구글 크롬 확장 프로그램」です。
拡張機能のスクリーンショット
BAND Members Exporter拡張機能のCRXファイルをダウンロード
BAND Members Exporter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
밴드 서비스에서 멤버 목록을 CSV, JSON, TSV 등의 파일로 내려받는 구글 크롬 확장 프로그램
拡張機能の基本情報
名前 | 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 |
Eメール | [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" ] } |