Tab Preview Board

Tab Preview Board

You can switch tabs with seeing their previews

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_appName__",
  "default_locale": "en",
  "version": "1.4",
  "description": "__MSG_appDescription__",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "windows",
    "tabs",
    "activeTab",
    "storage",
    "http://*/*",
    "https://*/*",
    "<all_urls>"
  ],
  "icons": {
    "16": "tps_16.png",
    "32": "tps_32.png",
    "64": "tps_64.png",
    "96": "tps_96.png",
    "128": "tps_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": "tps_16.png",
    "default_title": "Tab Preview Board",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "web_accessible_resources": [
    "whitepaper.png",
    "close.png"
  ]
}