Tabplus newtab pro

Tabplus newtab pro

Make your chrome work like a tablet!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "version": "1.0.2",
  "default_locale": "en",
  "description": "__MSG_extDesc__",
  "icons": {
    "16": "static/img/icon.png",
    "19": "static/img/icon.png",
    "38": "static/img/icon.png",
    "48": "static/img/icon.png",
    "128": "static/img/icon.png"
  },
  "browser_action": {
    "default_icon": "static/img/icon.png",
    "default_title": "tabplus",
    "default_popup": "popup.html"
  },
  "options_page": "option.html",
  "background": {
    "persistent": false,
    "scripts": [
      "background.bundle.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content.bundle.js"
      ],
      "run_at": "document_end"
    }
  ],
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "bookmarks",
    "activeTab",
    "topSites",
    "tabs"
  ]
}