Dashby - personal dashboard

Productivity start page with live wallpapers, inspirational quotes, bookmarks, HD photos, weather, todolist for your browser.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "homepage_url": "https://browserextensions.store/",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "short_name": "__MSG_extName__",
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "<all_urls>",
    "bookmarks",
    "topSites",
    "chrome://favicon/"
  ],
  "icons": {
    "48": "/icons/48.png",
    "128": "/icons/128.png"
  },
  "chrome_url_overrides": {
    "newtab": "/tab/tab.html"
  },
  "content_security_policy": "script-src 'self' ; object-src 'self'",
  "background": {
    "scripts": [
      "/js/background.js"
    ],
    "persistent": true
  },
  "version": "1.3.3",
  "browser_action": {
    "default_title": "__MSG_extName__"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}