Youtube AutoCloser

Youtube AutoCloser

Automagically close the current Youtube tab at the end of videos.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Youtube AutoCloser",
  "version": "1.3resigned1",
  "description": "Automagically close the current Youtube tab at the end of videos",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*",
        "*://*.youtu.be/*"
      ],
      "js": [
        "yt-autocloser.js"
      ]
    }
  ],
  "icons": {
    "48": "icons/icon-48.png",
    "480": "icons/icon-480.png"
  },
  "browser_action": {
    "default_title": "Toggle Youtube AutoCloser",
    "default_icon": {
      "48": "icons/icon-48.png",
      "480": "icons/icon-480.png"
    }
  },
  "permissions": [
    "contextMenus",
    "tabs",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{99c2e721-c7c6-4792-bda7-4e9fcce85bbc}"
    }
  }
}