News friend

News friend

Helps you read articles by creating a summary and finding related articles.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "News friend",
  "version": "0.0.1",
  "description": "Helps you read articles by creating a summary and finding related articles.",
  "icons": {
    "16": "images/Nf-small-16.png",
    "32": "images/Nf-small-32.png",
    "48": "images/Nf-small-48.png",
    "128": "images/Nf-small-128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "48": "images/Nf-small-48.png",
      "128": "images/Nf-small-128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "scripts/content.js"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ]
}