BAND Member Extrator V2

손쉽게 랜덤으로 태그하세요!

什麼是BAND Member Extrator V2?

BAND Member Extrator V2是由doyeonguk42開發的Chrome擴展程式,該擴展的主要功能是“손쉽게 랜덤으로 태그하세요!”。

擴展截圖

screenshot
screenshot
screenshot

下載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 BAND Member Extrator V2
ID oofabaencccahklomcnclonickceffaa
官方網址 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
電子郵箱 [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"
        }
    ]
}