Examine source code of Pilot Solution Extension

Inspect and view changes in Pilot Solution Extension 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": 3,
  "name": "Pilot Solution Extension",
  "version": "2.0.7",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Súmate al CRM experto en la industria automotriz",
  "action": {
    "default_icon": "images/icon-pilot.png",
    "default_popup": "pages/popup.html"
  },
  "host_permissions": [
    "https://api.pilotsolution.com.ar/*",
    "https://www.googleapis.com/"
  ],
  "background": {
    "service_worker": "scripts/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.web.whatsapp.com/*"
      ],
      "css": [
        "css/base.css",
        "css/content.css",
        "css/loading.css",
        "css/icons.css",
        "css/toast.css"
      ],
      "js": [
        "scripts/utils.js",
        "scripts/auth.js",
        "scripts/initialize.js",
        "scripts/content.js",
        "scripts/whatsappService.js",
        "scripts/apiService.js",
        "scripts/messages.js",
        "scripts/leads.js",
        "scripts/notes.js",
        "scripts/toast.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "pages/layout_home.html",
        "pages/layout_login.html",
        "pages/loading.html",
        "pages/button.html",
        "icons/icon-success.html",
        "icons/icon-error.html",
        "images/chevron.png",
        "images/group.png",
        "images/pilot.png",
        "images/noResult.png",
        "locales/es.json",
        "locales/en.json",
        "locales/pt.json"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}