NewsPrompt: Personalized Daily News Summary

NewsPrompt: Personalized Daily News Summary

Get all news and trending stories from the web every time you open your new tab along with a news search functionality.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "scripts/core/background.js"
  },
  "name": "NewsPrompt: Personalized Daily News Summary",
  "short_name": "Newsprompt",
  "offline_enabled": true,
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "100": "icons/icon100.png",
    "128": "icons/icon128.png"
  },
  "description": "Get all news and trending stories from the web every time you open your new tab along with a news search functionality.",
  "version": "23.3.14",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end",
      "all_frames": false,
      "js": [
        "scripts/core/content.js"
      ]
    },
    {
      "matches": [
        "*://*.newsprompt.co/*"
      ],
      "run_at": "document_end",
      "all_frames": false,
      "js": [
        "scripts/core/distribution-content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*"
      ],
      "matches": [
        "*://newsprompt.co/*"
      ]
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "permissions": [
    "history",
    "storage",
    "cookies",
    "offscreen",
    "declarativeNetRequest"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules_1.json"
      }
    ]
  },
  "chrome_url_overrides": {
    "newtab": "html/new/index.html"
  }
}