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.」です。

拡張機能のスクリーンショット

screenshot

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 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
Eメール [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
        }
    ]
}