List Opened Tabs

List Opened Tabs

An extension for list, search, rearrange, close tabs and switch to another tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "List Opened Tabs",
  "version": "1.1.0",
  "description": "An extension for list, search, rearrange, close tabs and switch to another tab.",
  "icons": {
    "16": "images/logo_16.png",
    "32": "images/logo_32.png",
    "64": "images/logo_64.png",
    "128": "images/logo_128.png"
  },
  "browser_action": {
    "default_title": "List Opened Tabs",
    "default_icon": "images/logo_32.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "chrome://favicon/"
  ],
  "web_accessible_resources": [
    "images/*"
  ],
  "background": {
    "scripts": [
      "js/eventPage.js"
    ],
    "persistent": false
  }
}