OctoRef

Hightlight variable defenition, references

What is OctoRef?

OctoRef is a Chrome extension developed by restrry, and its main feature is "Hightlight variable defenition, references".

Extension Screenshots

screenshot

Download OctoRef Extension CRX File

Download OctoRef 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

                        Comfortable navigation through JavaScript or TypeScript sources on Github with adding ability to find all references for variable and its definitions.
HOW TO USE:
 + click – highlight references and definition
 – clean highlightes
 + click (Mac:  + click) – jump to next usage place, if not in the viewport
 +  + click (Mac:  +  + click) – jump to definition

Report problems to https://github.com/restrry/octo-ref/issues                    

Extension Basic Information

Name OctoRef OctoRef
ID ohmmdeimnfadblenffiiheeegbgddpok
Official URL https://chrome.google.com/webstore/detail/octoref/ohmmdeimnfadblenffiiheeegbgddpok
Description Hightlight variable defenition, references
File Size 3.61 MB
Installation Count 12
Current Version 0.1.0
Last Updated 2018-09-24
Publish Date 2018-09-24
Developer restrry
Payment Type free
Extension Website https://github.com/restrry/octo-ref
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "OctoRef",
    "description": "Hightlight variable defenition, references",
    "version": "0.1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "index.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                ".\/js\/contentscript.js"
            ],
            "all_frames": false
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}