Browser Memory Control

Browser Memory Control

Reduce memory usage in Chrome by setting a free memory threshold when unused tabs are put to sleep.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "ru",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "1.0",
  "icons": {
    "16": "images/icon.png",
    "18": "images/icon.png",
    "19": "images/icon.png",
    "32": "images/icon.png",
    "36": "images/icon.png",
    "38": "images/icon.png",
    "48": "images/icon.png",
    "64": "images/icon.png",
    "128": "images/icon.png",
    "256": "images/icon.png"
  },
  "background": {
    "service_worker": "js/background.js",
    "module": true
  },
  "action": {
    "default_icon": {
      "16": "images/icon.png"
    },
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "js/helpers.js",
        "js/content.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "alarms",
    "system.memory",
    "contextMenus",
    "tabs"
  ],
  "host_permissions": [
    "*://*/*"
  ]
}