Notes in Yandex.Mail — eZametka
Add notes to emails in Yandex.Mail
什么是Notes in Yandex.Mail — eZametka?
Notes in Yandex.Mail — eZametka是由https://ezametka.ru开发的Chrome扩展程序,该扩展的主要功能是“Add notes to emails in Yandex.Mail”。
扩展截图
下载Notes in Yandex.Mail — eZametka扩展crx文件
下载Notes in Yandex.Mail — eZametka扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Allows you to add a note to an email in the web version of Yandex.Mail. Features: 1. Add notes to emails. 2. Color setting for notes. For example, you can mark an important note in red. 3. View all added notes in one list. 4. Search by notes. 5. Note reminder: you can set the time and day for the reminder. On the appointed day and time, it will appear on the screen. How adding/editing/deleting notes works: 1. Open an email. At the top of an email, a field for entering the text of the note will appear. 2. Enter the note text. The text is saved automatically after a short period of time. 3. Navigate to the folder that contains this email. An icon will appear next to the subject of an email, which says that a note has been added to the email. 4. Hovering the mouse over the icon will show the text of the note. 5. To edit the note, go back to the email. 6. To delete a note, go to an email and clear the note entry field.
扩展基本信息
名称 | Notes in Yandex.Mail — eZametka |
ID | nkjnpnlplfcmfeicfnclejojlkdknhhb |
官方URL | https://chromewebstore.google.com/detail/notes-in-yandexmail-%E2%80%94-eza/nkjnpnlplfcmfeicfnclejojlkdknhhb |
简介 | Add notes to emails in Yandex.Mail |
文件大小 | 146 KB |
安装次数 | 378 |
当前版本 | 1.3.5 |
更新时间 | 2023-03-26 |
上架时间 | 2020-07-20 |
评分 | 4.83/5 共6次评分 |
开发者 | https://ezametka.ru |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://ezametka.ru/ |
隐私政策页面URL | http://hqsib.ru/privacy.html |
支持的语言 | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "version": "1.3.5", "manifest_version": 3, "description": "__MSG_extDescription__", "default_locale": "en", "icons": { "16": "images\/16x16.png", "128": "images\/128x128.png" }, "action": { "default_icon": "images\/16x16.png" }, "permissions": [ "storage", "alarms", "notifications" ], "host_permissions": [ "*:\/\/dev.ezametka.ru\/*" ], "externally_connectable": { "matches": [ "https:\/\/ezametka.ru\/*" ] }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/mail.yandex.ru\/*", "*:\/\/mail.yandex.com\/*", "*:\/\/mail.yandex.ua\/*", "*:\/\/mail.yandex.kz\/*", "*:\/\/mail.yandex.by\/*", "*:\/\/mail.yandex.fr\/*", "*:\/\/mail.yandex.az\/*", "*:\/\/mail.yandex.ee\/*", "*:\/\/mail.yandex.kg\/*" ], "js": [ "content.js" ], "css": [ "styles.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "images\/*.png" ], "matches": [ "*:\/\/mail.yandex.ru\/*", "*:\/\/mail.yandex.com\/*", "*:\/\/mail.yandex.ua\/*", "*:\/\/mail.yandex.kz\/*", "*:\/\/mail.yandex.by\/*", "*:\/\/mail.yandex.fr\/*", "*:\/\/mail.yandex.az\/*", "*:\/\/mail.yandex.ee\/*", "*:\/\/mail.yandex.kg\/*" ] } ] } |