Poet - New Tab Daily Poem Reads

Poet - New Tab Daily Poem Reads

Displays short and classic daily poems upon new tab launches.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Poet - New Tab Daily Poem Reads",
  "version": "1.0.5",
  "author": "Chuyun Shen",
  "description": "Displays short and classic daily poems upon new tab launches.",
  "manifest_version": 2,
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "permissions": [
    "storage",
    "*://poetrydb.org/*",
    "*://en.wikipedia.org/*"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/poet16.png",
      "32": "images/poet32.png",
      "48": "images/poet48.png",
      "128": "images/poet128.png"
    }
  },
  "icons": {
    "16": "images/poet16.png",
    "32": "images/poet32.png",
    "48": "images/poet48.png",
    "128": "images/poet128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_security_policy": "script-src 'self' https://kit.fontawesome.com; object-src 'self'"
}