Examine source code of SnapLinker

Inspect and view changes in SnapLinker source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SnapLinker",
  "version": "1.5.0",
  "description": "Easily generate affiliate links for the AvantLink network",
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "sidePanel"
  ],
  "host_permissions": [
    "https://www.snaplinker.com/*"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "omnibox": {
    "keyword": "snap"
  },
  "options_page": "./pages/options.html",
  "action": {
    "default_title": "SnapLinker",
    "default_popup": "./pages/popup.html",
    "default_icon": {
      "16": "images/extension_16.png",
      "32": "images/extension_32.png",
      "48": "images/extension_48.png",
      "128": "images/extension_128.png"
    }
  },
  "icons": {
    "16": "images/extension_16.png",
    "32": "images/extension_32.png",
    "48": "images/extension_48.png",
    "128": "images/extension_128.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+S",
        "mac": "Alt+S"
      },
      "description": "Make a SnapLink for URL in address bar"
    }
  }
}