OctoRef
Hightlight variable defenition, references
Cos'è OctoRef?
OctoRef è un'estensione di Chrome sviluppata da restrry, e la sua funzione principale è "Hightlight variable defenition, references".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione OctoRef
Scarica i file di estensione OctoRef in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | ohmmdeimnfadblenffiiheeegbgddpok |
URL Ufficiale | https://chrome.google.com/webstore/detail/octoref/ohmmdeimnfadblenffiiheeegbgddpok |
Descrizione | Hightlight variable defenition, references |
Dimensione del File | 3.61 MB |
Conteggio Installazioni | 12 |
Versione Corrente | 0.1.0 |
Ultimo Aggiornamento | 2018-09-24 |
Data di Pubblicazione | 2018-09-24 |
Sviluppatore | restrry |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/restrry/octo-ref |
Lingue Supportate | 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" ] } |