MDNJump
Quickest way to look something up on MDN ( Mozilla Developer Network ).
MDNJumpคืออะไร?
MDNJump เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Cory Gross และคุณลักษณะหลักของมันคือ "Quickest way to look something up on MDN ( Mozilla Developer Network )."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MDNJump
ดาวน์โหลดไฟล์ส่วนขยาย MDNJump ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
MDNJump is a simple extension for Google Chrome which adds a context menu for text selections allowing quick reference lookups on the fly. MDNJump also adds an Omnibox keyword which you can use in Chrome's address bar. MDN is generally my favorite reference for front-end development. I created this extension so I could more quickly search it's documentation. Usage ------ To use MDNJump, select some text on a page you're reading such as `window.location` and right click. The MDNJump context menu entry will be present. Click the menu button and instead of being brought to a search results page, you will jump directly to the top MDN page for your selected text query. You may also use MDNJump through Chrome's Omnibox (the address bar). Simply type "mdn-" and hit TAB or SPACE to activate MDNJump. You may then enter a query and jump directly to the top MDN page for that given query. http://github.com/CoryG89/MDNJump
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | MDNJump |
ID | mfjekjhknpjgpgchoghlemhgchpmkiha |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/mdnjump/mfjekjhknpjgpgchoghlemhgchpmkiha |
คำอธิบาย | Quickest way to look something up on MDN ( Mozilla Developer Network ). |
ขนาดไฟล์ | 9.57 KB |
จำนวนการติดตั้ง | 19 |
เวอร์ชันปัจจุบัน | 0.1.3 |
อัปเดตครั้งล่าสุด | 2013-08-14 |
วันที่เผยแพร่ | 2013-08-13 |
ผู้พัฒนา | Cory Gross |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://github.com/CoryG89/MDNJump |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MDNJump", "version": "0.1.3", "description": "Quickest way to look something up on MDN ( Mozilla Developer Network ).", "icons": { "16": "ico\/16.png", "48": "ico\/48.png", "128": "ico\/128.png" }, "permissions": [ "contextMenus", "tabs" ], "omnibox": { "keyword": "mdn-" }, "background": { "scripts": [ "index.js" ], "persistent": false } } |