Noogle - Clean Naver
Extension for cleaner Naver.
Noogle - Clean Naver란 무엇입니까?
Noogle - Clean Naver은(는) Korean Lab에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension for cleaner Naver."입니다.
확장 프로그램 스크린샷
Noogle - Clean Naver 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
지저분한 네이버의 UI를 깔끔하게 해주어 집중력을 높여줍니다. 오픈소스 참여: https://github.com/chanjungkim/noogle
확장 프로그램 기본 정보
이름 | Noogle - Clean Naver |
ID | fjgggfbmofokfmdecldnhlommognnepc |
공식 URL | https://chromewebstore.google.com/detail/noogle-clean-naver/fjgggfbmofokfmdecldnhlommognnepc |
설명 | Extension for cleaner Naver. |
파일 크기 | 39.39 KB |
설치 횟수 | 20 |
현재 버전 | 2.3 |
최근 업데이트 | 2023-05-29 |
출시 날짜 | 2019-02-16 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | Korean Lab |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/chanjungkim/noogle |
도움말 페이지 URL | https://github.com/chanjungkim/noogle |
개인정보 보호 정책 페이지 URL | https://shorturl.at/xzT69 |
지원되는 언어 | ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Noogle - Clean Naver", "manifest_version": 3, "version": "2.3", "description": "Extension for cleaner Naver.", "permissions": [ "contextMenus", "tabs", "storage", "activeTab" ], "action": { "default_popup": "popup\/popup.html", "default_icon": { "128": "images\/icon128.png", "48": "images\/icon48.png", "16": "images\/icon16.png" }, "default_title": "Noogle" }, "icons": { "128": "images\/icon128.png", "48": "images\/icon48.png", "16": "images\/icon16.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.naver.com\/" ], "css": [ "core.css" ], "js": [ "core.js" ] } ], "options_page": "option\/options.html" } |