StrikeThrough for Gmail

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

Cos'è StrikeThrough for Gmail?

StrikeThrough for Gmail è un'estensione di Chrome sviluppata da https://gsmart.in, e la sua funzione principale è "This light-weight extension adds a strike-through button to Gmail compose window - with keyboard shortcut Ctrl+Shift+S.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione StrikeThrough for Gmail

Scarica i file di estensione StrikeThrough for Gmail in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome StrikeThrough for Gmail StrikeThrough for Gmail
ID bafcgdbnifplmbidjllnefgbhglckgge
URL Ufficiale https://chromewebstore.google.com/detail/strikethrough-for-gmail/bafcgdbnifplmbidjllnefgbhglckgge
Descrizione This light-weight extension adds a strike-through button to Gmail compose window - with keyboard shortcut Ctrl+Shift+S.
Dimensione del File 60.1 KB
Conteggio Installazioni 3,442
Versione Corrente 1.0.2.6
Ultimo Aggiornamento 2018-12-03
Data di Pubblicazione 2018-12-03
Valutazione 4.75/5 Totale 8 Valutazioni
Sviluppatore https://gsmart.in
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://gsmart.in/support/strike-through
URL della Pagina della Politica sulla Privacy https://gsmart.in/gen/privacy
Lingue Supportate 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
}