StrikeThrough for Gmail

This light-weight extension adds a strike-through button to Gmail compose window - with keyboard shortcut Ctrl+Shift+S.

StrikeThrough for Gmail란 무엇입니까?

StrikeThrough for Gmail은(는) https://gsmart.in에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This light-weight extension adds a strike-through button to Gmail compose window - with keyboard shortcut Ctrl+Shift+S."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

StrikeThrough for Gmail 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Until now it was quite tricky to add strike-through text to your Gmail messages. Now you can add strike-through text thanks to this extension. Install this extension in your browser and refresh the Gmail page. The button is immediately available in the Compose Window.

Select the text in your compose window and click on the newly added strike-through button.

The extension supports keyboard shortcut Ctrl+Shift+S. Select the text and press Ctrl+Shift+S. You can toggle the text style by pressing Ctrl+Shift+S again.

Updates:
version 1.0.2.6 
fixes 'automatically scrolling to top when strike-through button is pressed issue                    

확장 프로그램 기본 정보

이름 StrikeThrough for Gmail StrikeThrough for Gmail
ID bafcgdbnifplmbidjllnefgbhglckgge
공식 URL https://chromewebstore.google.com/detail/strikethrough-for-gmail/bafcgdbnifplmbidjllnefgbhglckgge
설명 This light-weight extension adds a strike-through button to Gmail compose window - with keyboard shortcut Ctrl+Shift+S.
파일 크기 60.1 KB
설치 횟수 3,442
현재 버전 1.0.2.6
최근 업데이트 2018-12-03
출시 날짜 2018-12-03
평점 4.75/5 총 8 개의 평점
개발자 https://gsmart.in
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://gsmart.in/support/strike-through
개인정보 보호 정책 페이지 URL https://gsmart.in/gen/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "StrikeThrough for Gmail",
    "description": "This light-weight extension adds a strike-through button to Gmail compose window - with keyboard shortcut Ctrl+Shift+S.",
    "version": "1.0.2.6",
    "permissions": [
        "https:\/\/mail.google.com\/",
        "https:\/\/inbox.google.com\/",
        "https:\/\/gsmart.in\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/inbox.google.com\/*"
            ],
            "js": [
                "inboxsdk.js",
                "strike-through.js"
            ]
        }
    ],
    "icons": {
        "19": "app19.png",
        "48": "app48.png",
        "128": "app128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "app19.png",
            "48": "app48.png"
        },
        "default_title": "Gmail StrikeThrough",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "strike-through.png"
    ],
    "manifest_version": 2
}