Tab++

Tab++

Arrange the tabs in chrome easily

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Tab++",
  "version": "1.1",
  "icons": {
    "128": "logo.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "minimum_chrome_version": "23",
  "description": "Arrange the tabs in chrome easily",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "short_name": "Tabs Search & Navigator",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "jquery-3.2.1.min.js",
      "script.js"
    ]
  },
  "web_accessible_resources": [
    "close.png"
  ],
  "browser_action": {
    "default_icon": "logo.png",
    "default_popup": "popup.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+O",
        "mac": "Command+O"
      },
      "description": "Activate Tab++"
    },
    "ordertitle": {
      "suggested_key": {
        "default": "Alt+T"
      },
      "description": "Order By Title"
    },
    "orderurl": {
      "suggested_key": {
        "default": "Alt+U"
      },
      "description": "Order By URL"
    }
  },
  "content_scripts": [
    {
      "js": [
        "jquery-3.2.1.min.js",
        "jquery.mark.min.js",
        "content.js"
      ],
      "all_frames": false,
      "css": [],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ]
}