Notoy
Saves a link to the current active tab with its title, keywords and a long and short description as markdown, Org-Mode or plain text
什么是Notoy?
Notoy是由Release-Candidate开发的Chrome扩展程序,该扩展的主要功能是“Saves a link to the current active tab with its title, keywords and a long and short description as markdown, Org-Mode or plain text”。
扩展截图
下载Notoy扩展crx文件
下载Notoy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Notoy saves a note of the current website including it's URL, some keywords and a short or long description to disk. The note can be formatted as Markdown (for programs like Obsidian, Joplin or Zettlr), as Org-Mode to use with Emacs' Org-Mode or as plain text.
扩展基本信息
名称 | Notoy |
ID | ejmcdafpeijhmmmfebmdpcmgaaoaminc |
官方URL | https://chromewebstore.google.com/detail/notoy/ejmcdafpeijhmmmfebmdpcmgaaoaminc |
简介 | Saves a link to the current active tab with its title, keywords and a long and short description as markdown, Org-Mode or plain text |
文件大小 | 140 KB |
安装次数 | 50 |
当前版本 | 1.0.2 |
更新时间 | 2021-10-12 |
上架时间 | 2021-10-07 |
开发者 | Release-Candidate |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://notoy-browserextensions.readthedocs.io/en/stable/ |
帮助页面URL | https://github.com/Release-Candidate/Notoy-BrowserExtensions |
支持的语言 | de,en,sk |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extensionName__", "description": "__MSG_extensionDescription__", "version": "1.0.2", "default_locale": "en", "manifest_version": 3, "author": "Roland Csaszar", "background": { "service_worker": "background.js" }, "options_page": "options.html", "permissions": [ "storage", "tabs", "scripting", "downloads" ], "host_permissions": [ "http:\/\/*\/", "https:\/\/*\/" ], "icons": { "16": ".\/images\/icon_transp_16.png", "32": ".\/images\/icon_transp_32.png", "48": ".\/images\/icon_transp_48.png", "128": ".\/images\/icon_transp_128.png" }, "action": { "default_popup": "popup.html", "default_icon": { "16": ".\/images\/icon_transp_16.png", "32": ".\/images\/icon_transp_32.png", "48": ".\/images\/icon_transp_48.png", "128": ".\/images\/icon_transp_128.png" } } } |