Naver Band Post & Comment Remover

This is a chrome extension program that helps remove posts and comments from Naver band.

Naver Band Post & Comment Remover란 무엇입니까?

Naver Band Post & Comment Remover은(는) Sihyeong Lee에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This is a chrome extension program that helps remove posts and comments from Naver band."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Naver Band Post & Comment Remover 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        이 크롬 확장 프로그램은 네이버 밴드의 게시글 및 댓글 그리고 사진을 지우는데 도움을 주는 확장 프로그램입니다.

현재 네이버 밴드에서는 게시글, 사진, 댓글 전체삭제를 지원하지 않습니다. 삭제를 위해서는 항목 하나하나를 클릭 해줘야하는 불편함이 있어 개발하게된 확장 프로그램입니다.

빠른 속도로 삭제시 가끔 밴드 자체 버그로 잔여 항목들이 표시되지 않을수 있으니 시간차를 두어 여러번 접속을 해서 항목의 존재 유무를 확인하여야합니다.

* 사용방법 *
1. 네이버 밴드 접속
2. 데이터 삭제를 원하는 밴드에 접속 후 '멤버' 텍스트를 클릭합니다.
3. 본인의 프로필 이미지를 선택한 후 '작성글 보기'를 클릭합니다.
4. 이 페이지에서 삭제를 원하는 항목을 지정할 수 있습니다 (게시글, 사진, 댓글 탭 사용)
5. 우측의 확장프로그램 아이콘을 클릭한 후 Remove 버튼을 클릭한 후 확인 버튼을 눌러줍니다.
6. 이후 확장 프로그램 아이콘을 클릭하여 모든 데이터가 지워질때까지 Remove 버튼을 계속 눌러줍니다.

This is a chrome extension program that helps remove posts and comments from Naver band.

* How to Use *
1. Access to Naver Band
2. Access to the band you want to delete the data and click the 'member' text.
3. Select your profile image and click 'View posts'.
4. This page lets you specify what you want to delete (using the posts, pictures, and comments tabs).
5. Click the extension icon on the right, click the Remove button, and then press the OK button.
6. Continue pressing the Remove button until all data is erased by clicking the subsequent extension icon.

If you delete items at high speed, sometimes the remaining items may not be displayed with the band itself bug, so you should check the existence of the items by making several connections.

모든 코드들은 아래 Github 레포지토리에서 확인 가능합니다. 문의 또한 Github Issue 탭을 이용해주시면 감사하겠습니다.

All codes can be found in the Github Repository below. If there is a problem, I would appreciate it if you could use the Github Issue tab.

https://github.com/sangumee/Naver-Band-Post-Remover                    

확장 프로그램 기본 정보

이름 Naver Band Post & Comment Remover Naver Band Post & Comment Remover
ID imkeopbmlpnjdgniafkbkpdhbdigmdbk
공식 URL https://chromewebstore.google.com/detail/naver-band-post-comment-r/imkeopbmlpnjdgniafkbkpdhbdigmdbk
설명 This is a chrome extension program that helps remove posts and comments from Naver band.
파일 크기 13.41 KB
설치 횟수 5,133
현재 버전 1.0.1
최근 업데이트 2021-06-11
출시 날짜 2019-05-29
평점 4.77/5 총 13 개의 평점
개발자 Sihyeong Lee
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/writingdeveloper/Naver-Band-Post-Remover/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Naver Band Post & Comment Remover",
    "version": "1.0.1",
    "description": "This is a chrome extension program that helps remove posts and comments from Naver band.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon.png",
            "32": "images\/icon.png",
            "48": "images\/icon.png",
            "128": "images\/icon.png"
        }
    },
    "icons": {
        "16": "images\/icon.png",
        "32": "images\/icon.png",
        "48": "images\/icon.png",
        "128": "images\/icon.png"
    },
    "manifest_version": 2
}