Code Grabber

Code Grabber

Grabs the JavaScript code containing 'console.log'

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Code Grabber",
  "description": "Grabs the JavaScript code containing 'console.log'",
  "version": "0.3.0",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icons/js_icon_grey_16.png"
  },
  "icons": {
    "16": "icons/js_icon_grey_16.png",
    "32": "icons/js_icon_grey_32.png",
    "64": "icons/js_icon_grey_64.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "MacCtrl+Shift+F"
      }
    }
  }
}