Examine source code of Social Friend Finder (SFF)

Inspect and view changes in Social Friend Finder (SFF) 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
{
  "manifest_version": 2,
  "default_locale": "en",
  "developer": {
    "name": "__MSG_sffDeveloperName__"
  },
  "homepage_url": "https://sffaddon.com",
  "name": "Social Friend Finder",
  "short_name": "SFF",
  "version": "4.2.3",
  "browser_specific_settings": {
    "gecko": {
      "id": "developer@sffaddon.com"
    }
  },
  "description": "__MSG_sffDescription__",
  "icons": {
    "48": "icon.png"
  },
  "background": {
    "scripts": [
      "sff-background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "sff-content.js",
        "content/sff-tooltip.js"
      ],
      "css": [
        "content/sff-tooltip.css"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "content_security_policy": "default-src 'self'",
  "options_ui": {
    "page": "options/sff-options.html",
    "open_in_tab": false
  },
  "permissions": [
    "menus",
    "storage"
  ]
}