Hyperclick

Hyperclick

Make template url in JSON clickable. Support JSON Formatter, JSONView and JSON Viewer

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hyperclick",
  "version": "0.0.3",
  "manifest_version": 2,
  "description": "Make template url in JSON clickable. Support JSON Formatter, JSONView and JSON Viewer",
  "homepage_url": "https://github.com/vickvu/hyperclick",
  "minimum_chrome_version": "21",
  "icons": {
    "128": "img/icon128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery-2.1.3.min.js",
        "js/facebox.js",
        "js/content.js"
      ],
      "css": [
        "css/content.css",
        "css/facebox.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "img/closelabel.png",
    "img/loading.gif"
  ],
  "permissions": [
    "*://*/*",
    "<all_urls>",
    "tabs"
  ]
}