Add feed to Slack
Add feed to Slack's RSS integration by Action.
Add feed to Slackคืออะไร?
Add feed to Slack เป็นส่วนขยายของ Chrome ที่พัฒนาโดย syoichi และคุณลักษณะหลักของมันคือ "Add feed to Slack's RSS integration by Action."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Add feed to Slack
ดาวน์โหลดไฟล์ส่วนขยาย Add feed to Slack ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Add feed to Slack |
ID | enphccllegeclhdejajmfbjofdhabahk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/add-feed-to-slack/enphccllegeclhdejajmfbjofdhabahk |
คำอธิบาย | Add feed to Slack's RSS integration by Action. |
ขนาดไฟล์ | 52.96 KB |
จำนวนการติดตั้ง | 88 |
เวอร์ชันปัจจุบัน | 0.0.2 |
อัปเดตครั้งล่าสุด | 2023-12-02 |
วันที่เผยแพร่ | 2016-12-11 |
ผู้พัฒนา | syoichi |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/syoichi/add-feed-to-slack |
URL หน้าช่วยเหลือ | https://github.com/syoichi/add-feed-to-slack/issues |
ภาษาที่รองรับ | 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 } ] } |