happy tabs ☺

happy tabs ☺

end tab insanity. don't have sad tabs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "happy tabs ☺",
  "version": "1.3",
  "description": "end tab insanity. don't have sad tabs.",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "tabs",
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "img/icon128.png",
    "overlay.html",
    "overlay.js"
  ],
  "icons": {
    "128": "img/icon128.png"
  },
  "manifest_version": 2
}