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. 扩展基本信息
| 名称 | |
| 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\/*"
]
}
]
} | |