Piccly Inspire Extension

Piccly Inspire Extension

Inspiring quotations on new tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Piccly Inspire Extension",
  "short_name": "Inspire",
  "version": "2.1.0",
  "description": "Inspiring quotations on new tab",
  "author": "Piccly",
  "homepage_url": "http://piccly.com",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "icon16.png",
    "default_title": "Lets go!"
  },
  "chrome_url_overrides": {
    "newtab": "NewTabQuote.html"
  },
  "permissions": [
    "tabs",
    "https://source.unsplash.com/",
    "storage"
  ],
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com https://cdnjs.cloudflare.com; object-src 'self'"
}