BAND Member Extrator V2
손쉽게 랜덤으로 태그하세요!
BAND Member Extrator V2とは何ですか?
BAND Member Extrator V2はdoyeonguk42によって開発されたChromeの拡張機能で、その主な機能は「손쉽게 랜덤으로 태그하세요!」です。
拡張機能のスクリーンショット
BAND Member Extrator V2拡張機能のCRXファイルをダウンロード
BAND Member Extrator V2拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
본 프로그램은 인원수가 많은 단체 밴드 내의 랜덤 태그를 자동화하기 위해 만들어졌습니다. V2 업데이트 추가 사항: 1. 랜덤 태그에서 제외할 멤버를 직접 입력하는 기능이 추가되었습니다. 2. 상태 메세지가 없는 멤버를 태그에 포함하는 기능이 추가되었습니다. 3. 복사 버튼이 생겼습니다. 유의 사항: 프로필 설정이 완료되지 않은 멤버는 태그에 포함되지 않습니다. (이름이 .인 경우) 사용 방법: 1. 네이버 밴드의 '멤버' 페이지 접속 2. 확장 프로그램 아이콘 클릭 3-1. 상태 메세지를 필수로 사용하지 않는 경우 '상태 메시지가 없는 멤버 태그에 포함' 체크 3-2. '자동 랜덤 태그' 페이지: 상태 메세지 내에 특수문자 또는 이모지가 있는 경우 커플로 인식하고, '커플 제외 랜덤 태그'에서 자동으로 제외 3-3. '제외 멤버 입력' 페이지: 랜덤 태그에서 제외할 멤버의 목록 직접 입력 4. 필요에 따라 복사 버튼을 통해 클립보드에 목록을 저장하여 태그에 사용 5. 버튼을 다시 눌러 새 랜덤 태그 생성 * F12를 눌러 개발자 도구를 연 뒤 콘솔의 내용을 복사해 사용할 수도 있습니다. 모든 코드는 Github 레포지토리에서 확인할 수 있습니다. 문의는 Issue 탭을 이용해주세요. ---------- This extension is programmed to create randomized list of usernames within a large BAND group. V2 updates: 1. You can directly enter members to be excluded. 2. You can choose to include members without status messages. 3. A copy button has been created! Usage: 1. Access "Members" page in Naver BAND. 2. Click the Extension icon. 3. Check 'Include members without status message' if status message is not mandatory. (Members whose profiles are not completely set up are not included in the list. i.e. the username is '.') 4. 'Auto Randomize': if the user has special characters or emojis included in the status message, they are recognized as a 'couple' and automatically excluded from 'Couple Excluded Random List'. 'Enter Excluded Members' page: Directly enter a list of members to be excluded from the random list. 5. Save the list to the clipboard via the Copy button. 6. Press the button again to create a new random list. You can also press F12 to open the developer tool and use the contents out of the console. This extension is officially registered in the Chrome Web Store. Please use the Issue tab for inquiries.
拡張機能の基本情報
名前 | BAND Member Extrator V2 |
ID | oofabaencccahklomcnclonickceffaa |
公式URL | https://chromewebstore.google.com/detail/band-member-extrator-v2/oofabaencccahklomcnclonickceffaa |
説明 | 손쉽게 랜덤으로 태그하세요! |
ファイルサイズ | 115 KB |
インストール数 | 817 |
現在のバージョン | 2.0.0 |
最終更新日 | 2023-05-08 |
公開日 | 2022-01-05 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | doyeonguk42 |
Eメール | [email protected] |
支払い方法 | free |
ヘルプページのURL | https://github.com/Jenguk42/Naver-Band-chrome-extension |
対応言語 | ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "BAND Member Extrator V2", "description": "\uc190\uc27d\uac8c \ub79c\ub364\uc73c\ub85c \ud0dc\uadf8\ud558\uc138\uc694!", "version": "2.0.0", "author": "Doyeon Guk", "manifest_version": 3, "icons": { "128": "images\/icon128.png" }, "background": { "service_worker": "background.js" }, "permissions": [ "storage", "tabs", "scripting" ], "host_permissions": [ "*:\/\/band.us\/band\/*" ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/band.us\/band\/*" ], "js": [ "content-script.js" ], "run_at": "document_end" } ] } |