Get RSS Feed URL

Get RSS Feed URL

Retreive RSS feeds URLs from Website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Get RSS Feed URL",
  "description": "Retreive RSS feeds URLs from Website",
  "version": "3.0.0",
  "author": "@shevabam",
  "homepage_url": "https://github.com/shevabam/get-rss-feed-url-extension",
  "permissions": [
    "activeTab",
    "notifications"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_icon": "img/icon_default.png",
    "default_popup": "popup.html",
    "default_title": "Click to view RSS feeds for this page"
  },
  "icons": {
    "128": "img/icon_128.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+Shift+R"
      }
    }
  }
}