Java API Search (JDK 9-13)

Java API Search (JDK 9-13)

Search the Java API directly within the Chrome Omnibox.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Java API Search (JDK 9-13)",
  "description": "Search the Java API directly within the Chrome Omnibox.",
  "version": "0.0.1.2",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "https://docs.oracle.com/javase/*/docs/api/*",
    "https://docs.oracle.com/en/java/javase/*/docs/api/*"
  ],
  "omnibox": {
    "keyword": "javadoc"
  },
  "manifest_version": 2
}