StrikeThrough for Gmail
This light-weight extension adds a strike-through button to Gmail compose window - with keyboard shortcut Ctrl+Shift+S.
O que é StrikeThrough for Gmail?
StrikeThrough for Gmail é uma extensão do Chrome desenvolvida por https://gsmart.in, e sua principal característica é "This light-weight extension adds a strike-through button to Gmail compose window - with keyboard shortcut Ctrl+Shift+S.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão StrikeThrough for Gmail
Baixe arquivos de extensão StrikeThrough for Gmail no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | StrikeThrough for Gmail |
ID | bafcgdbnifplmbidjllnefgbhglckgge |
URL Oficial | https://chromewebstore.google.com/detail/strikethrough-for-gmail/bafcgdbnifplmbidjllnefgbhglckgge |
Descrição | This light-weight extension adds a strike-through button to Gmail compose window - with keyboard shortcut Ctrl+Shift+S. |
Tamanho do Arquivo | 60.1 KB |
Contagem de Instalações | 3,442 |
Versão Atual | 1.0.2.6 |
Última Atualização | 2018-12-03 |
Data de Publicação | 2018-12-03 |
Classificação | 4.75/5 Total de 8 Avaliações |
Desenvolvedor | https://gsmart.in |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Ajuda | https://gsmart.in/support/strike-through |
URL da Página de Política de Privacidade | https://gsmart.in/gen/privacy |
Idiomas Suportados | 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 } |