OctoRef

Hightlight variable defenition, references

Co to jest OctoRef?

OctoRef to rozszerzenie Chrome opracowane przez restrry, a jego główną funkcją jest „Hightlight variable defenition, references”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia OctoRef

Pobierz pliki rozszerzeń OctoRef w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa OctoRef OctoRef
ID ohmmdeimnfadblenffiiheeegbgddpok
Oficjalny URL https://chrome.google.com/webstore/detail/octoref/ohmmdeimnfadblenffiiheeegbgddpok
Opis Hightlight variable defenition, references
Rozmiar pliku 3.61 MB
Liczba instalacji 12
Aktualna Wersja 0.1.0
Ostatnia Aktualizacja 2018-09-24
Data Publikacji 2018-09-24
Deweloper restrry
Typ Płatności free
Strona Rozszerzenia https://github.com/restrry/octo-ref
Obsługiwane Języki 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"
    ]
}