jump
Remember sites using words, not long URLs.
Co je jump?
jump je rozšíření Chrome vyvinuté Big Top Labs, a jeho hlavní funkcí je „Remember sites using words, not long URLs.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření jump
Stáhněte si soubory rozšíření jump ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | jump |
ID | nnmoidfdhdncdeeficmimjfcdbhaaffi |
Oficiální URL | https://chromewebstore.google.com/detail/jump/nnmoidfdhdncdeeficmimjfcdbhaaffi |
Popis | Remember sites using words, not long URLs. |
Velikost souboru | 297 KB |
Počet instalací | 24 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2014-01-02 |
Datum Vydání | 2014-01-02 |
Hodnocení | 4.83/5 Celkem 6 Hodnocení |
Vývojář | Big Top Labs |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/jennielees/jump |
URL Stránky Nápovědy | https://github.com/jennielees/jump |
Podporované Jazyky | 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" ] } |