The Great-er Discarder-er

The Great-er Discarder-er

Helps Chrome run faster by freeing up memory and system resources being used by inactive tabs or old 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": "The Great-er Discarder-er",
  "description": "Helps Chrome run faster by freeing up memory and system resources being used by inactive tabs or old tabs",
  "version": "0.2.1",
  "permissions": [
    "tabs",
    "storage",
    "contextMenus",
    "alarms"
  ],
  "background": {
    "scripts": [
      "js/db.js",
      "js/storage.js",
      "js/tabStates.js",
      "js/eventPage.js"
    ],
    "persistent": false
  },
  "content_scripts": [],
  "browser_action": {
    "default_title": "The Great-er Discarder-er",
    "default_icon": "img/icon19.png",
    "default_popup": "html/popup.html"
  },
  "options_page": "html/options.html",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "incognito": "split",
  "minimum_chrome_version": "54",
  "commands": {
    "1-discard-tab": {
      "description": "Discard active tab",
      "suggested_key": {
        "default": "Ctrl+Shift+S"
      }
    },
    "3-discard-active-window": {
      "description": "Discard all tabs in active window"
    },
    "4-reload-active-window": {
      "description": "Reload all tabs in active window"
    },
    "5-discard-all-windows": {
      "description": "Discard all tabs in all windows"
    },
    "6-reload-all-windows": {
      "description": "Reload all tabs in all windows"
    }
  }
}