Get All The Links!

Get All The Links!

A dead-simple & non-instrusive extension that displays all links from any page in the Console. Works great with Google SERPs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Get All The Links!",
  "description": "A dead-simple & non-instrusive extension that displays all links from any page in the Console. Works great with Google SERPs.",
  "version": "0.1",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "content.js",
        "serp.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon.png"
  }
}