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
官方網址 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"
    ]
}