LOVE-G RSS Reader2

LOVE-G RSS Reader2

Simple RSS reader

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_app_title__",
  "version": "2.1.7",
  "default_locale": "en",
  "description": "__MSG_app_description__",
  "icons": {
    "16": "/images/lg2-16.png",
    "24": "/images/lg2-24.png",
    "32": "/images/lg2-32.png",
    "48": "/images/lg2-48.png",
    "128": "/images/lg2-128.png"
  },
  "action": {
    "default_title": "__MSG_popup_title__",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/lg2-16.png",
      "24": "/images/lg2-24.png",
      "32": "/images/lg2-32.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "third-party/jquery.min.js",
        "common.js",
        "content-script.js"
      ]
    }
  ],
  "author": {
    "name": "www.harurow",
    "url": "https://zenn.dev/harurow/"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  }
}