tabby

tabby

A simple Chrome extension to reign in those with bad tabits.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "tabby",
  "version": "2.0",
  "manifest_version": 2,
  "description": "A simple Chrome extension to reign in those with bad tabits.",
  "icons": {
    "16": "./img/tabby_16.png",
    "128": "./img/tabby_128.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "tabby"
  },
  "minimum_chrome_version": "18",
  "permissions": [
    "tabs",
    "notifications",
    "storage"
  ],
  "background": {
    "scripts": [
      "./js/app/popup.js"
    ]
  }
}