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 |
官方網址 | 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" ] } |