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 là gì?

Naver Band Post & Comment Remover là một tiện ích mở rộng Chrome được phát triển bởi Sihyeong Lee, và tính năng chính của nó là "This is a chrome extension program that helps remove posts and comments from Naver band.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Naver Band Post & Comment Remover

Tải xuống các tệp mở rộng Naver Band Post & Comment Remover dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

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

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

* 사용방법 *
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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Naver Band Post & Comment Remover Naver Band Post & Comment Remover
ID imkeopbmlpnjdgniafkbkpdhbdigmdbk
URL Chính Thức https://chromewebstore.google.com/detail/naver-band-post-comment-r/imkeopbmlpnjdgniafkbkpdhbdigmdbk
Mô tả This is a chrome extension program that helps remove posts and comments from Naver band.
Kích Thước Tệp 13.41 KB
Số Lần Cài Đặt 5,133
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2021-06-11
Ngày Phát Hành 2019-05-29
Đánh Giá 4.77/5 Tổng số 13 Đánh Giá
Nhà Phát Triển Sihyeong Lee
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/writingdeveloper/Naver-Band-Post-Remover/issues
Ngôn Ngữ Được Hỗ Trợ 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
}