Gmail Append HTML [Keyboard]

Allows the usage of HTML content in Gmail from the context menu and keyboard.

Gmail Append HTML [Keyboard]란 무엇입니까?

Gmail Append HTML [Keyboard]은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows the usage of HTML content in Gmail from the context menu and keyboard."입니다.

확장 프로그램 스크린샷

screenshot

Gmail Append HTML [Keyboard] 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Gmail HTML Append Extension
-----------------------------

Forked from https://github.com/erichlotto/gmail-html-email
All thanks go to @erichlotto !

This adds the ability to paste via keyboard shorcut, making the whole thing a bit smoother for our use case. 

The default keyboard shortcut is 'CTRL+SHIFT+X' - so that you can Cut the HTML (CTRL+X) and immediately paste it as rendered HTML by just adding the shift to the previous keyboard shortcut.                    

확장 프로그램 기본 정보

이름 Gmail Append HTML [Keyboard] Gmail Append HTML [Keyboard]
ID ehkediiljoojmidehpemogkmfibcflka
공식 URL https://chromewebstore.google.com/detail/gmail-append-html-keyboar/ehkediiljoojmidehpemogkmfibcflka
설명 Allows the usage of HTML content in Gmail from the context menu and keyboard.
파일 크기 18.71 KB
설치 횟수 97
현재 버전 1.0.4
최근 업데이트 2019-05-24
출시 날짜 2019-05-24
개발자 Unknown
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail Append HTML [Keyboard]",
    "description": "Allows the usage of HTML content in Gmail from the context menu and keyboard.",
    "version": "1.0.4",
    "permissions": [
        "contextMenus",
        "clipboardRead"
    ],
    "manifest_version": 2,
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/mail.google.com\/*",
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "commands": {
        "html_paste": {
            "suggested_key": {
                "default": "Ctrl+Shift+X"
            },
            "description": "Execute Paste as HTML"
        }
    }
}