OctoRef
Hightlight variable defenition, references
ما هو OctoRef؟
OctoRef هو إضافة Chrome تم تطويرها بواسطة restrry، والميزة الرئيسية لها هي "Hightlight variable defenition, references".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة OctoRef
قم بتنزيل ملفات الامتداد OctoRef بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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
معلومات أساسية عن التمديد
الاسم | |
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" ] } |