TabsPane

TabsPane

Tabs Pain relief. Expose like functionality for Chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TabsPane",
  "version": "0.2",
  "manifest_version": 2,
  "description": "Tabs Pain relief. Expose like functionality for Chrome",
  "homepage_url": "https://github.com/achekulaev/tabspane",
  "minimum_chrome_version": "30.0.0.0",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "src/bg/background.js",
      "js/jquery/jquery.min.js"
    ],
    "persistent": true
  },
  "omnibox": {
    "keyword": "ls"
  },
  "browser_action": {
    "default_icon": "icons/icon19.png",
    "default_title": "browser action demo"
  },
  "permissions": [
    "tabs",
    "history",
    "<all_urls>"
  ],
  "offline_enabled": true
}