NeoCertified Messaging (MED1)
Send emails securely using NeoCertified
Что такое NeoCertified Messaging (MED1)?
NeoCertified Messaging (MED1) - это расширение Chrome, разработанное peter, и его основная функция - "Send emails securely using NeoCertified".
Снимки экрана расширения
Скачать файл CRX расширения NeoCertified Messaging (MED1)
Скачайте файлы расширений NeoCertified Messaging (MED1) в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
NeoCertified has been a leading secure email provider since 2002.
We protect individuals, SMB & enterprise organizations with secure email solutions. Основная информация о расширении
| Название | |
| ID | hhalonfpifdlmcplmlpaembinpjcbjmo |
| Официальный URL | https://chromewebstore.google.com/detail/neocertified-messaging-me/hhalonfpifdlmcplmlpaembinpjcbjmo |
| Описание | Send emails securely using NeoCertified |
| Размер файла | 816 KB |
| Количество установок | 900 |
| Текущая Версия | 3.0.0 |
| Последнее Обновление | 2023-11-16 |
| Дата публикации | 2019-01-17 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | peter |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://neocertified.com/ |
| URL страницы помощи | https://neocertified.com/support-and-faqs/ |
| URL страницы политики конфиденциальности | https://neocertified.com/privacy-policy |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "NeoCertified Messaging (MED1)",
"short_name": "NCM (MED1)",
"description": "Send emails securely using NeoCertified",
"version": "3.0.0",
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"action": {
"default_icon": "images\/icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*",
"https:\/\/inbox.google.com\/*"
],
"js": [
"inboxsdk.js",
"content.js"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"scripting"
],
"host_permissions": [
"https:\/\/mail.google.com\/*",
"https:\/\/inbox.google.com\/*",
"*:\/\/*\/*"
],
"web_accessible_resources": [
{
"resources": [
"images\/icon.png"
],
"matches": [
"https:\/\/mail.google.com\/*",
"https:\/\/inbox.google.com\/*",
"*:\/\/*\/*"
]
}
]
} | |