Noogle - Clean Naver
Extension for cleaner Naver.
What is Noogle - Clean Naver?
Noogle - Clean Naver is a Chrome extension developed by Korean Lab, and its main feature is "Extension for cleaner Naver.".
Extension Screenshots
Download Noogle - Clean Naver Extension CRX File
Download Noogle - Clean Naver extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
지저분한 네이버의 UI를 깔끔하게 해주어 집중력을 높여줍니다. 오픈소스 참여: https://github.com/chanjungkim/noogle
Extension Basic Information
Name | Noogle - Clean Naver |
ID | fjgggfbmofokfmdecldnhlommognnepc |
Official URL | https://chromewebstore.google.com/detail/noogle-clean-naver/fjgggfbmofokfmdecldnhlommognnepc |
Description | Extension for cleaner Naver. |
File Size | 39.39 KB |
Installation Count | 20 |
Current Version | 2.3 |
Last Updated | 2023-05-29 |
Publish Date | 2019-02-16 |
Rating | 5.00/5 Total 3 Ratings |
Developer | Korean Lab |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/chanjungkim/noogle |
Help Page URL | https://github.com/chanjungkim/noogle |
Privacy Policy Page URL | https://shorturl.at/xzT69 |
Supported Languages | 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" } |