Add feed to Slack
Add feed to Slack's RSS integration by Action.
什麼是Add feed to Slack?
Add feed to Slack是由syoichi開發的Chrome擴展程式,該擴展的主要功能是“Add feed to Slack's RSS integration by Action.”。
擴展截圖
下載Add feed to Slack擴展crx文件
下載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 |
官方網址 | 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 } ] } |