Hyperclick

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

What is Hyperclick?

Hyperclick is a Chrome extension developed by me, and its main feature is "Make template url in JSON clickable. Support JSON Formatter, JSONView and JSON Viewer".

Extension Screenshots

screenshot

Download Hyperclick Extension CRX File

Download Hyperclick extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                                            

Extension Basic Information

Name Hyperclick Hyperclick
ID jpioappkjhikgmfbhipkapogbiknlpan
Official URL https://chrome.google.com/webstore/detail/hyperclick/jpioappkjhikgmfbhipkapogbiknlpan
Description Make template url in JSON clickable. Support JSON Formatter, JSONView and JSON Viewer
File Size 53.63 KB
Installation Count 160
Current Version 0.0.3
Last Updated 2015-05-19
Publish Date 2015-05-19
Rating 5.00/5 Total 1 Ratings
Developer me
Payment Type free
Extension Website https://github.com/vickvu/hyperclick
Supported Languages en
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": [
                ""
            ],
            "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": [
        "*:\/\/*\/*",
        "",
        "tabs"
    ]
}