Sapiengraph - Fresh B2B Data in Sheets

Sapiengraph - Fresh B2B Data in Sheets

Enhance your data analysis and decision-making with Sapiengraph, a data enrichment tool for Google Sheets.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "author": "Proxycurl",
  "version": "4.5.21",
  "manifest_version": 3,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "assets/icons/icon-16.png",
    "24": "assets/icons/icon-24.png",
    "64": "assets/icons/icon-64.png",
    "128": "assets/icons/icon-128.png"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content/content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background/background.js"
  },
  "permissions": [
    "tabs",
    "notifications",
    "cookies",
    "alarms"
  ],
  "host_permissions": [
    "https://docs.google.com/spreadsheets/*/*",
    "https://www.linkedin.com/*/**",
    "*://sapiengraph.com/*/*"
  ],
  "options_ui": {
    "page": "options/index.html"
  },
  "action": {
    "default_icon": {
      "16": "assets/icons/icon-16.png",
      "48": "assets/icons/icon-48.png"
    },
    "default_title": "Sapiengraph",
    "default_popup": "popup/index.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "content/*",
        "options/*",
        "popup/*",
        "background/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}