Javadoc Redirector

Javadoc Redirector

Redirects you automatically to the Java 8 Javadoc.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Javadoc Redirector",
  "description": "Redirects you automatically to the Java 8 Javadoc.",
  "version": "1.2",
  "author": "z3ntu",
  "homepage_url": "https://z3ntu.github.io",
  "content_scripts": [
    {
      "js": [
        "js/replace.js"
      ],
      "matches": [
        "*://docs.oracle.com/javase/*/docs/api/*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "*://docs.oracle.com/javase/*"
  ],
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  }
}