Splash New Tab - Personal Dashboard

Splash New Tab - Personal Dashboard

Splash Tab is the perfect way to improve your start page with beautiful backgrounds and easy access to your favorite websites

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "version": "1.0.2",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "32": "static/32.png",
    "64": "static/64.png",
    "128": "static/128.png"
  },
  "permissions": [
    "bookmarks",
    "storage",
    "unlimitedStorage",
    "tabs",
    "https://sshot.org/*",
    "chrome://favicon/*"
  ],
  "browser_action": {
    "default_title": "__MSG_title__"
  },
  "background": {
    "scripts": [
      "./js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://unsplash.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "static/styles/content.css"
      ]
    }
  ],
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "static/*",
    "assets/*.svg",
    "assets/*.png",
    "assets/*.css",
    "assets/*.otf"
  ]
}