Naver Band Post & Comment Remover
This is a chrome extension program that helps remove posts and comments from Naver band.
O que é Naver Band Post & Comment Remover?
Naver Band Post & Comment Remover é uma extensão do Chrome desenvolvida por Sihyeong Lee, e sua principal característica é "This is a chrome extension program that helps remove posts and comments from Naver band.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Naver Band Post & Comment Remover
Baixe arquivos de extensão Naver Band Post & Comment Remover no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
이 크롬 확장 프로그램은 네이버 밴드의 게시글 및 댓글 그리고 사진을 지우는데 도움을 주는 확장 프로그램입니다. 현재 네이버 밴드에서는 게시글, 사진, 댓글 전체삭제를 지원하지 않습니다. 삭제를 위해서는 항목 하나하나를 클릭 해줘야하는 불편함이 있어 개발하게된 확장 프로그램입니다. 빠른 속도로 삭제시 가끔 밴드 자체 버그로 잔여 항목들이 표시되지 않을수 있으니 시간차를 두어 여러번 접속을 해서 항목의 존재 유무를 확인하여야합니다. * 사용방법 * 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
Informações Básicas da Extensão
Nome | Naver Band Post & Comment Remover |
ID | imkeopbmlpnjdgniafkbkpdhbdigmdbk |
URL Oficial | https://chromewebstore.google.com/detail/naver-band-post-comment-r/imkeopbmlpnjdgniafkbkpdhbdigmdbk |
Descrição | This is a chrome extension program that helps remove posts and comments from Naver band. |
Tamanho do Arquivo | 13.41 KB |
Contagem de Instalações | 5,133 |
Versão Atual | 1.0.1 |
Última Atualização | 2021-06-11 |
Data de Publicação | 2019-05-29 |
Classificação | 4.77/5 Total de 13 Avaliações |
Desenvolvedor | Sihyeong Lee |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Ajuda | https://github.com/writingdeveloper/Naver-Band-Post-Remover/issues |
Idiomas Suportados | 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 } |