Add feed to Slack

Add feed to Slack's RSS integration by Action.

Was ist Add feed to Slack?

Add feed to Slack ist eine Chrome-Erweiterung, die von syoichi entwickelt wurde, und ihr Hauptmerkmal ist "Add feed to Slack's RSS integration by Action.".

Erweiterungsscreenshots

screenshot

Add feed to Slack-Erweiterungs-CRX-Datei herunterladen

Laden Sie Add feed to Slack-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Add feed to Slack Add feed to Slack
ID enphccllegeclhdejajmfbjofdhabahk
Offizielle URL https://chromewebstore.google.com/detail/add-feed-to-slack/enphccllegeclhdejajmfbjofdhabahk
Beschreibung Add feed to Slack's RSS integration by Action.
Dateigröße 52.96 KB
Installationsanzahl 88
Aktuelle Version 0.0.2
Letztes Update 2023-12-02
Veröffentlichungsdatum 2016-12-11
Entwickler syoichi
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/syoichi/add-feed-to-slack
Hilfeseite URL https://github.com/syoichi/add-feed-to-slack/issues
Unterstützte Sprachen 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
        }
    ]
}