Patent Claims Analzyer

Patent Claims Analzyer

Provides patent claims information for a given patent.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Patent Claims Analzyer",
  "version": "3.4",
  "manifest_version": 2,
  "minimum_chrome_version": "18",
  "short_name": "Patents Claim Analzyer",
  "description": "Provides patent claims information for a given patent.",
  "author": "HTS LLC",
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab",
    "*://www.freepatentsonline.com/*.html",
    "*://patents.google.com/patent*",
    "*://www.google.co.uk/patents*",
    "*://www.google.de/patents*",
    "*://www.google.fr/patents*",
    "*://www.google.se/patents*",
    "*://www.google.ca/patents*",
    "*://www.google.co.in/patents*",
    "*://www.google.co.nz/patents*",
    "*://google.co.uk/patents*",
    "*://google.de/patents*",
    "*://google.fr/patents*",
    "*://google.se/patents*",
    "*://google.ca/patents*",
    "*://google.co.in/patents*",
    "*://google.co.nz/patents*",
    "*://*.uspto.gov/*",
    "*://worldwide.espacenet.com/*"
  ],
  "page_action": {
    "default_icon": "pca-19.png",
    "default_title": "Click for claims information (when available).",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.freepatentsonline.com/*.html",
        "*://patents.google.com/patent*",
        "*://www.google.co.uk/patents*",
        "*://www.google.de/patents*",
        "*://www.google.fr/patents*",
        "*://www.google.se/patents*",
        "*://www.google.ca/patents*",
        "*://www.google.co.in/patents*",
        "*://www.google.co.nz/patents*",
        "*://google.co.uk/patents*",
        "*://google.de/patents*",
        "*://google.fr/patents*",
        "*://google.se/patents*",
        "*://google.ca/patents*",
        "*://google.co.in/patents*",
        "*://google.co.nz/patents*",
        "*://*.uspto.gov/*",
        "*://worldwide.espacenet.com/*"
      ],
      "css": [
        "styles.css"
      ],
      "js": [
        "contentscript.js",
        "scroller.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "commands": {
    "_execute_page_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+9"
      }
    }
  },
  "icons": {
    "48": "pca-48.png",
    "128": "pca-128.png"
  }
}