OctoRef

Hightlight variable defenition, references

Что такое OctoRef?

OctoRef - это расширение Chrome, разработанное restrry, и его основная функция - "Hightlight variable defenition, references".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения OctoRef

Скачайте файлы расширений 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"
    ]
}