MDNJump
Quickest way to look something up on MDN ( Mozilla Developer Network ).
MDNJump क्या है?
MDNJump Cory Gross द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Quickest way to look something up on MDN ( Mozilla Developer Network )."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में MDNJump एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 } } |