StrikeThrough for Gmail

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

¿Qué es StrikeThrough for Gmail?

StrikeThrough for Gmail es una extensión de Chrome desarrollada por https://gsmart.in, y su función principal es "This light-weight extension adds a strike-through button to Gmail compose window - with keyboard shortcut Ctrl+Shift+S.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión StrikeThrough for Gmail

Descarga archivos de extensión StrikeThrough for Gmail en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre StrikeThrough for Gmail StrikeThrough for Gmail
ID bafcgdbnifplmbidjllnefgbhglckgge
URL Oficial https://chromewebstore.google.com/detail/strikethrough-for-gmail/bafcgdbnifplmbidjllnefgbhglckgge
Descripción This light-weight extension adds a strike-through button to Gmail compose window - with keyboard shortcut Ctrl+Shift+S.
Tamaño del Archivo 60.1 KB
Cantidad de Instalaciones 3,442
Versión Actual 1.0.2.6
Última Actualización 2018-12-03
Fecha de Publicación 2018-12-03
Calificación 4.75/5 Total de 8 Calificaciones
Desarrollador https://gsmart.in
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Ayuda https://gsmart.in/support/strike-through
URL de la Página de Política de Privacidad https://gsmart.in/gen/privacy
Idiomas Soportados 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
}