Examine source code of Stynch

Inspect and view changes in Stynch 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",
  "name": "Stynch",
  "description": "Analyse des profils LinkedIn",
  "author": "Fx SOFTS",
  "version": "1.1.22",
  "manifest_version": 3,
  "background": {
    "service_worker": "main/background.js"
  },
  "action": {
    "default_title": "Stynch",
    "default_icon": "assets/icon-48.png"
  },
  "icons": {
    "16": "assets/icon-16.png",
    "32": "assets/icon-32.png",
    "48": "assets/icon-48.png",
    "128": "assets/icon-128.png"
  },
  "permissions": [
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "https://*.linkedin.com/*"
  ],
  "web_accessible_resources": [
    {
      "use_dynamic_url": true,
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "assets/stynch.png",
        "assets/stynch_menu.png",
        "assets/stynch-toon-1.jpg",
        "assets/stynch-toon-2.jpg",
        "assets/stynch-toon-3.jpg",
        "assets/stynch-toon-4.jpg",
        "assets/stynch-toon-5.jpg",
        "assets/fa-solid-900.woff2"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.linkedin.com/in/*"
      ],
      "js": [
        "misc/aes.js",
        "main/config.js",
        "main/foreground.js",
        "main/chrome-listen.js"
      ],
      "run_at": "document_end"
    }
  ]
}