Notion-like Mail Formatting
Use notion-like HTML elements while composing emails
什麼是Notion-like Mail Formatting?
Notion-like Mail Formatting是由https://laurinstahl.page開發的Chrome擴展程式,該擴展的主要功能是“Use notion-like HTML elements while composing emails”。
擴展截圖
下載Notion-like Mail Formatting擴展crx文件
下載Notion-like Mail Formatting擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Nothing is worse than reading long boring emails. Get your point across by writing easy to read emails with this chrome extension that creates Notion-like HTML elements simply by typing out shortcut commands like “/h1”, “/callout”, “/table 3x3” and more! Callout elements are also customisable by colour (“/callout red”) so you can highlight different types of information to your recipients.This extension also provides command shortcuts on commonly used Gmail formatting such as “/h1” for headers and “/quote” and more. Make your emails clearer and easier to understand without your fingers even leaving the keyboard! Try out with this full list of commands: ------ /callout /quote /code /h1 /h2 /h3 /divider /twocolumn /table ------ Format it using any of these colors: blue, red, yellow, green, pink, orange, purple. Simply add them to your command: "/callout red Hello" Now new, Tables. Use it like this: "/table 5x5"
擴展基本資訊
名稱 | Notion-like Mail Formatting |
ID | fimaaiopcpeobbjijioojhphogealfod |
官方網址 | https://chromewebstore.google.com/detail/notion-like-mail-formatti/fimaaiopcpeobbjijioojhphogealfod |
簡介 | Use notion-like HTML elements while composing emails |
檔案大小 | 200 KB |
安裝次數 | 378 |
目前版本 | 1.0 |
更新時間 | 2021-10-28 |
上架時間 | 2021-10-26 |
評分 | 4.50/5 共 2 次評分 |
開發者 | https://laurinstahl.page |
電子郵箱 | [email protected] |
付費類型 | free |
說明頁面URL | https://calico-printer-a85.notion.site/Notion-Mail-Formatter-984e6e7ae8ec4ebcbce2fe4874e8a376 |
隱私政策頁面URL | https://www.notion.so/Privacy-Policy-1f7258d23cf84671837c7f8203df5761 |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Notion-like Mail Formatting", "version": "1.0", "description": "Use notion-like HTML elements while composing emails", "background": { "scripts": [ ".\/scripts\/background.js" ], "persistent": true }, "icons": { "192": "logo.png" }, "content_scripts": [ { "matches": [ "http:\/\/mail.google.com\/*" ], "js": [ ".\/scripts\/content.js" ] } ], "permissions": [ "https:\/\/mail.google.com\/*" ], "browser_action": { "default_popup": ".\/index.html" }, "manifest_version": 2 } |