YaTab

YaTab

A simple new tab page, with a personal dashboard featuring weather, to-do, notes and beautiful backgrounds.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "16": "images/icon_16.png",
      "48": "images/icon_48.png",
      "128": "images/icon_128.png"
    },
    "default_title": "Open New Tab"
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "description": "A simple new tab page, with a personal dashboard featuring weather, to-do, notes and beautiful backgrounds.",
  "icons": {
    "16": "images/icon_16.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "js": [
        "js/background.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "newtab.html"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval';object-src 'self'",
  "manifest_version": 2,
  "name": "YaTab",
  "permissions": [
    "storage",
    "activeTab",
    "<all_urls>",
    "tabs",
    "bookmarks",
    "history",
    "chrome://favicon/*",
    "browsingData",
    "history"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "4.2.1"
}