jump
Remember sites using words, not long URLs.
jump क्या है?
jump Big Top Labs द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Remember sites using words, not long URLs."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में jump एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Jump is a Chrome extension made purely for myself because I missed having a link shortener around. Rather than roll a remote shortener, I decided to write a little extension which uses Chrome sync to store a bunch of key: url pairs. Hit the arrow button to add a new link, or go to the page listing all links. Use ju as your omnibox shortcut to glory. Yes, for frequently visited sites this isn't much of an improvement over just typing the first few letters of the site into the omnibox. Where I find this kind of shortcut really handy, though, is for URLs like "New Google Drive document" (or a specific doc), or deep-linking into analytics systems, dashboards, etc -- sites where there are a bunch of potential autocompletes and you can't really tell the difference at a glance.
एक्सटेंशन की मूल जानकारी
नाम | jump |
ID | nnmoidfdhdncdeeficmimjfcdbhaaffi |
आधिकारिक URL | https://chromewebstore.google.com/detail/jump/nnmoidfdhdncdeeficmimjfcdbhaaffi |
विवरण | Remember sites using words, not long URLs. |
फ़ाइल का आकार | 297 KB |
स्थापना संख्या | 24 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2014-01-02 |
प्रकाशन तिथि | 2014-01-02 |
रेटिंग | 4.83/5 कुल 6 रेटिंग्स |
डेवलपर | Big Top Labs |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/jennielees/jump |
सहायता पृष्ठ URL | https://github.com/jennielees/jump |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "jump", "description": "Remember sites using words, not long URLs.", "version": "1.0", "omnibox": { "keyword": "ju" }, "icons": { "16": "icon1_16.png", "64": "icon1_64.png" }, "background": { "scripts": [ "utils.js", "background.js" ] }, "browser_action": { "default_icon": "icon1_64.png", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self' https:\/\/fonts.googleapis.com; object-src 'self'", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "sha1.js", "utils.js", "js\/jquery.js", "popup.js", "list.js" ] } ], "permissions": [ "storage", "tabs" ] } |