Where is it?
Whereisit is an extension that helps you to easily find the references on repositories in an online fashion.
Where is it?คืออะไร?
Where is it? เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Where is it Team และคุณลักษณะหลักของมันคือ "Whereisit is an extension that helps you to easily find the references on repositories in an online fashion."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Where is it?
ดาวน์โหลดไฟล์ส่วนขยาย Where is it? ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
whereisit makes code navigation on GitHub easier. Look up and jump around class/method definitions with a single click. Just highlight the name you wish to look up and click the action button in the toolbar! For even faster results, highlight the name, right click and hit "Where is it". Latest update: link insertions happen automatically for a repo you have visited before! Share your feedback via this survey: http://goo.gl/forms/nmfty3eWjp Thanks! whereisit is the hack that won Angelhack Brooklyn 2015. This is an open source project, check it out on GitHub https://github.com/ngzhian/whereisit/ Recent change: Fix extension not working when navigating around GitHub Fix permissions required for this extension (we don't read your tab or browsing history!)
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Where is it? |
ID | cdgnplmebagbialenimejpokfcodlkdm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/where-is-it/cdgnplmebagbialenimejpokfcodlkdm |
คำอธิบาย | Whereisit is an extension that helps you to easily find the references on repositories in an online fashion. |
ขนาดไฟล์ | 653 KB |
จำนวนการติดตั้ง | 110 |
เวอร์ชันปัจจุบัน | 0.2.3 |
อัปเดตครั้งล่าสุด | 2015-09-15 |
วันที่เผยแพร่ | 2015-09-14 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Where is it Team |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://whereisit.io |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Where is it?", "version": "0.2.3", "description": "Whereisit is an extension that helps you to easily find the references on repositories in an online fashion.", "icons": { "128": "img\/logo128.png", "19": "img\/logo19.png", "16": "img\/logo16.png" }, "page_action": { "default_icon": "img\/logo19.png", "default_popup": "popup.html" }, "background": { "scripts": [ "jquery-2.1.4.min.js", "shared.js", "utils\/browser-action.js", "background.js", "context-menu.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/github.com\/*" ], "js": [ "jquery-2.1.4.min.js", "shared.js", "injected.js" ], "run_at": "document_end" } ], "homepage_url": "http:\/\/whereisit.io", "permissions": [ "contextMenus", "activeTab", "*:\/\/github.com\/*", "http:\/\/localhost\/", "http:\/\/45.33.82.241\/" ] } |