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文件

下載Naver Band Post & Comment Remover擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

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

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

* 사용방법 *
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
官方網址 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
}