BAND Member Extrator V2

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

Qu'est-ce que BAND Member Extrator V2 ?

BAND Member Extrator V2 est une extension Chrome développée par doyeonguk42, et sa fonction principale est "손쉽게 랜덤으로 태그하세요!".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension BAND Member Extrator V2

Téléchargez les fichiers d'extension BAND Member Extrator V2 au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        본 프로그램은 인원수가 많은 단체 밴드 내의 랜덤 태그를 자동화하기 위해 만들어졌습니다.

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.                    

Informations de Base sur l'Extension

Nom BAND Member Extrator V2 BAND Member Extrator V2
ID oofabaencccahklomcnclonickceffaa
URL Officiel https://chromewebstore.google.com/detail/band-member-extrator-v2/oofabaencccahklomcnclonickceffaa
Description 손쉽게 랜덤으로 태그하세요!
Taille du Fichier 115 KB
Nombre d'Installations 817
Version Actuelle 2.0.0
Dernière Mise à Jour 2023-05-08
Date de Publication 2022-01-05
Évaluation 5.00/5 Total 3 Évaluations
Développeur doyeonguk42
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://github.com/Jenguk42/Naver-Band-chrome-extension
Langues Prises en Charge 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"
        }
    ]
}