Link Saver

Link Saver

Link Saver: A Chrome extension for saving social media handle links, providing quick access through handy shortcuts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Link Saver",
  "description": "Link Saver: A Chrome extension for saving social media handle links, providing quick access through handy shortcuts.",
  "version": "1.0.0",
  "action": {
    "default_popup": "./popup/index.html",
    "default_icon": "./images/icon.png"
  },
  "icons": {
    "16": "./images/icon-16.png",
    "32": "./images/icon-32.png",
    "48": "./images/icon-48.png",
    "128": "./images/icon-128.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "js": [
        "./scripts/content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}