The new browser tab extension

Simple extension for opening some page in the new browser tab
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "The new browser tab extension",
  "version": "0.4.0",
  "manifest_version": 2,
  "description": "Simple extension for opening some page in the new browser tab",
  "author": "Dmytro Shavaryn",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "browser_action": {
    "default_icon": "icons/48.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options/options.html"
  },
  "permissions": [
    "storage"
  ]
}