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.」です。
拡張機能のスクリーンショット
Notes拡張機能のCRXファイルをダウンロード
Notes拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [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\/*" ] } ] } |