Grab Session Links

Grab Session Links

Web extension that allows you to paste and open links, as well as copy all the links from your open tabs with one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Grab Session Links",
  "version": "0.4",
  "description": "Web extension that allows you to paste and open links, as well as copy all the links from your open tabs with one click.",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "clipboardWrite",
    "clipboardRead"
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/save16.png",
    "32": "icons/save32.png",
    "128": "icons/save128.png",
    "256": "icons/save256.png"
  }
}