OctoRef
Hightlight variable defenition, references
OctoRef là gì?
OctoRef là một tiện ích mở rộng Chrome được phát triển bởi restrry, và tính năng chính của nó là "Hightlight variable defenition, references".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng OctoRef
Tải xuống các tệp mở rộng OctoRef dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ohmmdeimnfadblenffiiheeegbgddpok |
URL Chính Thức | https://chrome.google.com/webstore/detail/octoref/ohmmdeimnfadblenffiiheeegbgddpok |
Mô tả | Hightlight variable defenition, references |
Kích Thước Tệp | 3.61 MB |
Số Lần Cài Đặt | 12 |
Phiên Bản Hiện Tại | 0.1.0 |
Cập Nhật Lần Cuối | 2018-09-24 |
Ngày Phát Hành | 2018-09-24 |
Nhà Phát Triển | restrry |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/restrry/octo-ref |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |