Hot Tabs: Tab Hotkeys/Shortcuts

Hot Tabs: Tab Hotkeys/Shortcuts

Assign hotkeys to any of your tabs!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Hot Tabs: Tab Hotkeys/Shortcuts",
  "description": "Assign hotkeys to any of your tabs!",
  "version": "0.7.5",
  "browser_action": {
    "default_icon": "icon-128.png"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "commands": {
    "toggle": {
      "suggested_key": {
        "default": "Alt+X"
      },
      "description": "Toggles tab switching"
    },
    "previous_tab": {
      "suggested_key": {
        "default": "Alt+A"
      },
      "description": "Go back to previous tab"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "keyscript.js"
      ],
      "css": [
        "indicator.css"
      ],
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "tabs",
    "https://ajax.googleapis.com/",
    "http://*/",
    "https://*/"
  ]
}