Add feed to Slack

Add feed to Slack's RSS integration by Action.

Add feed to Slack क्या है?

Add feed to Slack syoichi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add feed to Slack's RSS integration by Action."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Add feed to Slack एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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
        }
    ]
}