Scraper

Scraper

RSS, Atom Feed Reader & Web Crawler

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_app_name__",
  "version": "1.2.9",
  "default_locale": "en",
  "description": "__MSG_app_desc__",
  "permissions": [
    "notifications",
    "alarms",
    "storage",
    "management",
    "idle",
    "tabs",
    "unlimitedStorage",
    "offscreen"
  ],
  "optional_host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "worker.js"
  },
  "content_scripts": [
    {
      "js": [
        "js/browser-polyfill.min.js",
        "js/feed_finder.js",
        "doc_start.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "js/browser-polyfill.min.js",
        "js/feed_finder.js",
        "doc_idle.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/rss-16.png",
      "32": "images/rss-32.png",
      "48": "images/rss-48.png",
      "128": "images/rss-128.png"
    }
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+Shift+E",
        "mac": "Command+Shift+E"
      },
      "description": "Popup toggle"
    }
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "icons": {
    "16": "images/rss-16.png",
    "32": "images/rss-32.png",
    "48": "images/rss-48.png",
    "128": "images/rss-128.png"
  },
  "manifest_version": 3,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}