interface

interface

A minimalist home page and bookmark launch pad

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "interface",
  "description": "A minimalist home page and bookmark launch pad",
  "manifest_version": 2,
  "version": "1.0.8",
  "icons": {
    "16": "favicon-16x16.png",
    "32": "favicon-32x32.png",
    "128": "icon-128x128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "favicon-16x16.png",
      "32": "favicon-32x32.png"
    }
  },
  "author": "Zachary A. Caddick",
  "background": {
    "scripts": [
      "./jquery-1.12.4.min.js",
      "./font-awesome.js",
      "./bootstrap.min.js",
      "./background.js",
      "./right_dock_settings_functionality.js",
      "./datastorage.js",
      "./popup.js",
      "./change_css.js",
      "./focus_check.js",
      "./platform.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "./jquery-1.12.4.min.js",
        "./font-awesome.js",
        "./bootstrap.min.js",
        "./background.js",
        "./right_dock_settings_functionality.js",
        "./datastorage.js",
        "./popup.js",
        "./change_css.js",
        "./focus_check.js",
        "./platform.js"
      ],
      "matches": [
        "*://*.home.html/*"
      ]
    }
  ],
  "chrome_url_overrides": {
    "newtab": "home.html"
  },
  "file_system_provider_capabilities": {
    "configurable": true,
    "multiple_mounts": true,
    "source": "network"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "permissions": [
    "*://*.home.html/*",
    "storage"
  ]
}