Slack Enter Key Modifier
Enter should send message always on Slack.com
Cos'è Slack Enter Key Modifier?
Slack Enter Key Modifier è un'estensione di Chrome sviluppata da Satoru Takanami, e la sua funzione principale è "Enter should send message always on Slack.com".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Slack Enter Key Modifier
Scarica i file di estensione Slack Enter Key Modifier 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
If you turned off checkbox on input area, this extension works below. (NOTE: Default is on) Start a new line: - Enter Post message: - Shift + Enter - Ctrl + Enter - ⌘ + Enter (Mac)
Informazioni di Base sull'Estensione
Nome | Slack Enter Key Modifier |
ID | ejlmecppipaakakoclcfmlnheifdngeg |
URL Ufficiale | https://chromewebstore.google.com/detail/slack-enter-key-modifier/ejlmecppipaakakoclcfmlnheifdngeg |
Descrizione | Enter should send message always on Slack.com |
Dimensione del File | 36.67 KB |
Conteggio Installazioni | 545 |
Versione Corrente | 1.0.6 |
Ultimo Aggiornamento | 2017-11-17 |
Data di Pubblicazione | 2017-11-16 |
Valutazione | 4.53/5 Totale 15 Valutazioni |
Sviluppatore | Satoru Takanami |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/storz |
Lingue Supportate | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "1.0.6", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "permissions": [ "https:\/\/*.slack.com\/messages\/*", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*.slack.com\/messages\/*" ], "js": [ "scripts\/contentscript.js", "scripts\/checkbox.js" ], "css": [ "styles\/checkbox.css" ], "run_at": "document_end", "all_frames": false } ] } |