Slack Send Later
Slackへメッセージの予約投稿をするChrome拡張です。
What is Slack Send Later?
Slack Send Later is a Chrome extension developed by shoito, and its main feature is "Slackへメッセージの予約投稿をするChrome拡張です。".
Extension Screenshots
Download Slack Send Later Extension CRX File
Download Slack Send Later extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Slackにメッセージを送信予約するためのChrome拡張です。 ※2021-06-20 公式のSlack機能としてメッセージ送信予約が公開されました (https://slack.com/help/articles/1500012915082-Schedule-messages-to-send-later) 朝早く、夜遅く、または休日にSlackにメッセージを送るのに気を使ってしまうことはありませんか? リマインドしておいて、後で送ろうとするのではなく、メッセージは送信予約してしまいましょう。 使い方 1. メッセージ送信予約のために、Slackアプリを作成しトークンを取得します。(Permissions - Select Permission Scopes - chat:write:usersを付与) 2. ブラウザアクションのオプションからSlackトークンを設定する 3. ブラウザアクションから投稿先の「チャンネル」、「メッセージ」、「送信予定日時」を入力して「送信予約」ボタンを押下する 紹介ブログ - Slackメッセージを時間気にせず送りたいので、chat.scheduleMessage APIを使ってメッセージ送信予約機能を試してみた https://dev.classmethod.jp/tool/slack-schedule-message/
Extension Basic Information
Name | Slack Send Later |
ID | nnbmbbhkagnhjimdegagnoebeijljbci |
Official URL | https://chromewebstore.google.com/detail/slack-send-later/nnbmbbhkagnhjimdegagnoebeijljbci |
Description | Slackへメッセージの予約投稿をするChrome拡張です。 |
File Size | 868 KB |
Installation Count | 1,929 |
Current Version | 0.0.3 |
Last Updated | 2021-06-21 |
Publish Date | 2019-09-17 |
Rating | 5.00/5 Total 2 Ratings |
Developer | shoito |
[email protected] | |
Payment Type | free |
Supported Languages | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Slack Send Later", "short_name": "Slack Send Later", "version": "0.0.3", "manifest_version": 3, "description": "Slack\u3078\u30e1\u30c3\u30bb\u30fc\u30b8\u306e\u4e88\u7d04\u6295\u7a3f\u3092\u3059\u308bChrome\u62e1\u5f35\u3067\u3059\u3002", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "options_ui": { "page": "src\/options\/options.html", "open_in_tab": true }, "action": { "default_icon": "icons\/icon19.png", "default_title": "Slack Send Later", "default_popup": "src\/browser_action\/browser_action.html" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/slack.com\/api\/*" ], "background": { "service_worker": "background.js" } } |