Morning Person News

Morning Person News

Morning Person News provide users with top headlines from multiple sources, using a clean and minimalist cards user interface. No…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Morning Person News",
  "short_name": "Real time news feed from multiple, reliable sources, using a clean and minimalist UI",
  "version": "1.4",
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "permissions": [
    "storage",
    "chrome://favicon/"
  ],
  "optional_permissions": [
    "tabs",
    "topSites",
    "management",
    "bookmarks"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/scripts.js",
        "js/bootstrap.min.js",
        "app.js",
        "news.js",
        "jquery-1.10.2.js",
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon.png"
  },
  "content_security_policy": "script-src 'self' https://apis.google.com''sha256-base64 nonce encoded hash'; object-src 'self'"
}