OctoRef

Hightlight variable defenition, references

OctoRefとは何ですか?

OctoRefはrestrryによって開発されたChromeの拡張機能で、その主な機能は「Hightlight variable defenition, references」です。

拡張機能のスクリーンショット

screenshot

OctoRef拡張機能のCRXファイルをダウンロード

OctoRef拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 OctoRef OctoRef
ID ohmmdeimnfadblenffiiheeegbgddpok
公式URL https://chrome.google.com/webstore/detail/octoref/ohmmdeimnfadblenffiiheeegbgddpok
説明 Hightlight variable defenition, references
ファイルサイズ 3.61 MB
インストール数 12
現在のバージョン 0.1.0
最終更新日 2018-09-24
公開日 2018-09-24
開発者 restrry
支払い方法 free
拡張機能のウェブサイト https://github.com/restrry/octo-ref
対応言語 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"
    ]
}