AlexFlipnote/Homepage

AlexFlipnote/Homepage

A website that gives you a clean homepage with random backgrounds!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "content_security_policy": "script-src 'self'; object-src 'self';",
  "name": "AlexFlipnote/Homepage",
  "description": "A website that gives you a clean homepage with random backgrounds!",
  "homepage_url": "https://alexflipnote.dev",
  "version": "2.0.5",
  "chrome_url_overrides": {
    "newtab": "indexPlugin.html"
  },
  "icons": {
    "16": "assets/images/16.png",
    "32": "assets/images/32.png",
    "48": "assets/images/48.png",
    "128": "assets/images/128.png"
  },
  "browser_action": {
    "default_icon": "assets/images/logo.png",
    "default_popup": "assets/window.html"
  },
  "background": {
    "scripts": [
      "assets/js/plugin.js",
      "assets/js/demo.js",
      "assets/js/moment-with-locales.min.js"
    ]
  },
  "web_accessible_resources": [
    "indexPlugin.html"
  ],
  "options_ui": {
    "page": "assets/options.html",
    "open_in_tab": true
  },
  "minimum_chrome_version": "37",
  "applications": {
    "gecko": {
      "strict_min_version": "54.0"
    }
  },
  "permissions": [
    "tabs",
    "geolocation",
    "https://api.openweathermap.org/*",
    "storage"
  ]
}