Patent Plus

Patent Plus

Simplify patent reading on Google Patents - Patent Plus

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Patent Plus",
  "description": "Simplify patent reading on Google Patents - Patent Plus",
  "version": "1.7.27",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "tabs",
    "storage",
    "activeTab",
    "scripting"
  ],
  "icons": {
    "16": "/images/logo.png",
    "32": "/images/logo.png",
    "48": "/images/logo.png",
    "128": "/images/logo.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/moon.svg",
        "images/sun.svg",
        "images/refresh.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://tryslate.greyb.com/*",
        "https://slate.greyb.com/*"
      ],
      "js": [
        "content-script/config.js",
        "content-script/enhance-slate.js",
        "content-script/minimize-slate-content.js"
      ]
    },
    {
      "matches": [
        "https://tryslate.greyb.com/engage/search?ws*",
        "https://slate.greyb.com/engage/search?ws*"
      ],
      "js": [
        "content-script/build-taxonomy.js"
      ],
      "css": [
        "css/taxonomy_template.css"
      ]
    },
    {
      "matches": [
        "https://tryslate.greyb.com/engage*",
        "https://slate.greyb.com/engage*"
      ],
      "js": [
        "content-script/config.js",
        "content-script/patent-prior-art.js",
        "content-script/ai-summary/suggest-document-summary.js"
      ]
    },
    {
      "matches": [
        "https://tryslate.greyb.com/engage/search?ws*",
        "https://slate.greyb.com/engage/search?ws*"
      ],
      "js": [
        "content-script/ai-summary/summary-in-list-view.js"
      ]
    },
    {
      "matches": [
        "https://patents.google.com/*"
      ],
      "js": [
        "content-script/array.js",
        "content-script/enhance-google-patents.js"
      ]
    },
    {
      "matches": [
        "https://patents.google.com/patent/*"
      ],
      "js": [
        "content-script/config.js",
        "content-script/patentplusassitant.js",
        "content-script/patent-prior-art.js"
      ]
    },
    {
      "matches": [
        "https://tryslate.greyb.com/?utm_source=slate_extension*",
        "https://slate.greyb.com/?utm_source=slate_extension*"
      ],
      "js": [
        "content-script/login-with-slate.js"
      ]
    },
    {
      "matches": [
        "https://tryslate.greyb.com/*",
        "https://slate.greyb.com/*"
      ],
      "js": [
        "content-script/slate/prior_art/project_id.js"
      ]
    },
    {
      "matches": [
        "https://tryslate.greyb.com/engage/search?ws*",
        "https://slate.greyb.com/engage/search?ws*"
      ],
      "js": [
        "content-script/auto-interesting-insight.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup/slate_popup.html",
    "default_icon": {
      "16": "/images/logo.png",
      "32": "/images/logo.png",
      "48": "/images/logo.png",
      "128": "/images/logo.png"
    }
  },
  "host_permissions": [
    "https://tryslate.greyb.com/*",
    "https://patents.google.com/*",
    "https://usecatalyst.tech/*",
    "https://getpatentplus.com/*",
    "https://app.posthog.com/*",
    "https://slate.greyb.com/*"
  ]
}