Add feed to Slack
Add feed to Slack's RSS integration by Action.
Add feed to Slack là gì?
Add feed to Slack là một tiện ích mở rộng Chrome được phát triển bởi syoichi, và tính năng chính của nó là "Add feed to Slack's RSS integration by Action.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Add feed to Slack
Tải xuống các tệp mở rộng Add feed to Slack dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
With this extension, when you press Page Action on a web page that can detect RSS feeds, you can open the Slack's RSS integration page with the RSS feed URL embedded.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Add feed to Slack |
ID | enphccllegeclhdejajmfbjofdhabahk |
URL Chính Thức | https://chromewebstore.google.com/detail/add-feed-to-slack/enphccllegeclhdejajmfbjofdhabahk |
Mô tả | Add feed to Slack's RSS integration by Action. |
Kích Thước Tệp | 52.96 KB |
Số Lần Cài Đặt | 88 |
Phiên Bản Hiện Tại | 0.0.2 |
Cập Nhật Lần Cuối | 2023-12-02 |
Ngày Phát Hành | 2016-12-11 |
Nhà Phát Triển | syoichi |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/syoichi/add-feed-to-slack |
URL Trang Trợ Giúp | https://github.com/syoichi/add-feed-to-slack/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Add feed to Slack", "short_name": "Feed2Slack", "version": "0.0.2", "manifest_version": 3, "minimum_chrome_version": "99", "description": "Add feed to Slack's RSS integration by Action.", "author": "Syoichi Tsuyuhara", "homepage_url": "https:\/\/github.com\/syoichi\/add-feed-to-slack", "icons": { "16": "img\/icon\/16.png", "32": "img\/icon\/32.png", "48": "img\/icon\/48.png", "128": "img\/icon\/128.png" }, "action": { "default_icon": { "16": "img\/icon\/16.png", "24": "img\/icon\/24.png", "32": "img\/icon\/32.png" }, "default_title": "Add feed to Slack" }, "background": { "service_worker": "js\/service-worker.js", "type": "module" }, "permissions": [ "activeTab", "scripting" ], "host_permissions": [ "*:\/\/*\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/content.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "matches": [ "*:\/\/*\/*" ], "resources": [ "js\/get-feed-url.js" ], "use_dynamic_url": true } ] } |