Inspire Gallery New Tab

Inspire Gallery New Tab

Get inspired with every new tab. Displays a cutomisable gallery of the best current work from around the net.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Inspire Gallery New Tab",
  "short_name": "Inspire Gallery",
  "description": "Get inspired with every new tab. Displays a cutomisable gallery of the best current work from around the net.",
  "version": "1.3",
  "icons": {
    "16": "img/icon/icon16.png",
    "32": "img/icon/icon32.png",
    "48": "img/icon/icon48.png",
    "128": "img/icon/icon128.png",
    "256": "img/icon/icon256.png",
    "512": "img/icon/icon512.png"
  },
  "permissions": [
    "storage",
    "https://ajax.googleapis.com/",
    "https://www.behance.net/"
  ],
  "content_security_policy": "script-src 'self' https://www.artstation.com/ https://www.behance.net/ https://ssl.google-analytics.com; object-src 'self'",
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.behance.net/*",
        "https://ssl.google-analytics.com/*",
        "https://www.artstation.com/*",
        "https://www.itch.io/*"
      ],
      "js": [
        "js/be.js",
        "js/settings.js",
        "js/inspiration.js",
        "js/jquery-3.2.1.js"
      ]
    }
  ]
}