Insert HTML by Designmodo
Insert custom HTML format Gmail.
Что такое Insert HTML by Designmodo?
Insert HTML by Designmodo - это расширение Chrome, разработанное https://designmodo.com, и его основная функция - "Insert custom HTML format Gmail.".
Снимки экрана расширения
Скачать файл CRX расширения Insert HTML by Designmodo
Скачайте файлы расширений Insert HTML by Designmodo в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This Extension injects an icon inside Gmail Compose text area. On the click event, it will open a modal popup where you can paste your html script in. We don't collect any privacy data.
Основная информация о расширении
Название | Insert HTML by Designmodo |
ID | bcflbfdlpegakpncdgmejelcolhmfkjh |
Официальный URL | https://chromewebstore.google.com/detail/insert-html-by-designmodo/bcflbfdlpegakpncdgmejelcolhmfkjh |
Описание | Insert custom HTML format Gmail. |
Размер файла | 521 KB |
Количество установок | 23,797 |
Текущая Версия | 1.0.4 |
Последнее Обновление | 2022-08-16 |
Дата публикации | 2021-03-26 |
Рейтинг | 3.61/5 Всего 23 оценок |
Разработчик | https://designmodo.com |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы политики конфиденциальности | https://designmodo.com/privacy-statement |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Insert HTML by Designmodo", "short_name": "Insert HTML in Gmail", "description": "Insert custom HTML format Gmail.", "version": "1.0.4", "host_permissions": [ "*:\/\/mail.google.com\/*", "*:\/\/inbox.google.com\/*" ], "content_security_policy": { "extension_page": "script-src 'self' 'unsafe-eval'; object-src 'self'" }, "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/*", "*:\/\/inbox.google.com\/*" ], "js": [ "js\/inboxsdk.js", "js\/injectInCompose.js", "js\/injectInSign.js", "js\/contentHelper.js", "js\/content.js" ], "css": [ "css\/content.css" ] } ], "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "web_accessible_resources": [ { "resources": [ "resources\/*" ], "matches": [ "*:\/\/mail.google.com\/*", "*:\/\/inbox.google.com\/*" ] } ] } |