Design News Tab by Veranda

Design News Tab by Veranda

Learn what's going on in digital design and art every time you open a new tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "icons": {
    "16": "res/img/extension-icon-32.png",
    "48": "res/img/extension-icon-96.png",
    "128": "res/img/extension-icon-256.png"
  },
  "name": "Design News Tab by Veranda",
  "description": "Learn what's going on in digital design and art every time you open a new tab.",
  "version": "1.0",
  "chrome_url_overrides": {
    "newtab": "new_tab.html"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://verandacolor.com/enews*"
      ],
      "css": [
        "css/normalize.css",
        "css/common.css",
        "css/palette_list.css",
        "css/news_list.css"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content_script.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "permissions": [
    "*://newtab",
    "*://verandacolor.com/enews*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}