Notes

A clean and simple browser extension for managing notes.

Notes란 무엇입니까?

Notes은(는) https://lars.koelker.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A clean and simple browser extension for managing notes."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Notes 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Managing notes made easy.

Notes is a clean and simple browser extension for managing notes.

Features:
* Create, edit and delete notes
* Define a priority for a note
* Create notes through your context menu
* Dynamic link preview (new!)

Options:
* Save your current draft
* Enable/disable the context menu
* Enable/disable the spellcheck for notes
* Enable/disable interaction with links
* Enable/disable link preview

Languages:
Notes is available in English and German.

For more information visit https://lars.koelker.dev/extensions/note
Documentation: https://lars.koelker.dev/extensions/note/documentation.php






Icons provided by feathericons.com.
"People in conference" photo by "History in HD" on unsplash.com.                    

확장 프로그램 기본 정보

이름 Notes Notes
ID gnikdgadoiinijjlgidpoiecoepnngfl
공식 URL https://chromewebstore.google.com/detail/notes/gnikdgadoiinijjlgidpoiecoepnngfl
설명 A clean and simple browser extension for managing notes.
파일 크기 56.48 KB
설치 횟수 142
현재 버전 1.0.2
최근 업데이트 2023-11-10
출시 날짜 2020-10-25
개발자 https://lars.koelker.dev
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://lars.koelker.dev/extensions/note
도움말 페이지 URL https://lars.koelker.dev/extensions/note/documentation.php
개인정보 보호 정책 페이지 URL https://lars.koelker.dev/privacy
지원되는 언어 de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.0.2",
    "version_name": "1.0.2",
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "icons": {
        "16": "img\/extension_icon\/16.png",
        "32": "img\/extension_icon\/32.png",
        "64": "img\/extension_icon\/64.png",
        "128": "img\/extension_icon\/128.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        "commands",
        "contextMenus"
    ],
    "default_locale": "en",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "action": {
        "default_popup": "popup.html"
    },
    "omnibox": {
        "keyword": "notes"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+N",
                "mac": "Alt+N"
            }
        }
    },
    "background": {
        "service_worker": "sw.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/lars.koelker.dev\/extensions\/note\/?version=*"
            ],
            "js": [
                "js\/hideUpdateNotice.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "manifest.json"
            ],
            "matches": [
                "https:\/\/*.koelker.dev\/*"
            ]
        }
    ]
}