JS RAM memory consumption : usedJSHeapSize

JS RAM memory consumption : usedJSHeapSize

Display the usedJSHeapSize of the current tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "JS RAM memory consumption : usedJSHeapSize",
  "description": "Display the usedJSHeapSize of the current tab",
  "version": "0.1.3",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/default.png",
    "name": "Click to output info in console"
  },
  "permissions": [
    "activeTab",
    "*://*/*"
  ],
  "manifest_version": 2
}