OctoRef
Hightlight variable defenition, references
OctoRefคืออะไร?
OctoRef เป็นส่วนขยายของ Chrome ที่พัฒนาโดย restrry และคุณลักษณะหลักของมันคือ "Hightlight variable defenition, references"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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" ] } |