Recent-tabs

Recent-tabs

Very fast switching tabs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "1.5",
  "manifest_version": 2,
  "short_name": "__MSG_appShortName__",
  "default_locale": "en",
  "icons": {
    "16": "icons/icon-16.png",
    "128": "icons/icon-128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "icons/icon-19.png",
      "38": "icons/icon-38.png"
    },
    "default_title": "__MSG_browserActionTitle__",
    "default_popup": "pages/popup.html"
  },
  "options_ui": {
    "page": "pages/settings.html",
    "open_in_tab": false
  },
  "commands": {
    "_execute_browser_action": {},
    "move-tabs-new-window": {
      "suggested_key": {
        "default": "Alt+N"
      },
      "description": "Move tabs to new window"
    }
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "permissions": [
    "history",
    "tabs",
    "storage",
    "bookmarks"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}