MultiLookup
This extension lets you select text to search from multiple sources and displays the results in a single pop-up screen.
Τι είναι το MultiLookup;
Το MultiLookup είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jimo1001, και η κύρια λειτουργία του είναι "This extension lets you select text to search from multiple sources and displays the results in a single pop-up screen.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης MultiLookup
Λήψη αρχείων επέκτασης MultiLookup σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Search multiple sources such as dictionaries, translation sites and web search as you surf the web. This extension shows results in an in-screen display. The key concept behind this extension is to reduce search effort in the following two ways: - Tailor search types to the kind of text selected - Extract and display only desired content from search sites *User's Guide Please view the info video first. - ALT + text selection Hold the ALT key while selecting text to automatically display results from your selected sites. (Depending on the kind of text string you select, the results will be shown from sites of different search types, such as dictionary, web search, or translation.) - Text selection + context menu Select text and right-click for context menu operation. Select a search site from the MultiLookup menu item. (Candidate search sites will differ according to the type of search string you select.) - Browser action Click the extension icon in the top right for the quick search box. Enter text in the search box and hit Enter to display results. - Site-specific keyboard shortcuts You can set keyboard shortcuts assigned to specific search sites from the Options Page. Hit the keyboard shortcut after selecting text on the web to display results from the search site assigned to your shortcut. (You can assign one keyboard shortcut to several sites at once for multi-search.) *Caveat This extension is still in beta mode. There may be significant changes in functionality by ver 1.0.0. If you're okay with that, enjoy! More more info on MultiLookup usage, visit the site below: http://www.simplivillage.com/trac/wiki/ChromeExtension/MultiLookup (translated by James Lazo) -- twitter: http://twitter.com/jimo1001 email : jimo1001[at]gmail.com
Βασικές Πληροφορίες Επέκτασης
Όνομα | MultiLookup |
ID | kploejngmljnhpofmejijjhegehhdfoa |
Επίσημο URL | https://chromewebstore.google.com/detail/multilookup/kploejngmljnhpofmejijjhegehhdfoa |
Περιγραφή | This extension lets you select text to search from multiple sources and displays the results in a single pop-up screen. |
Μέγεθος Αρχείου | 275 KB |
Αριθμός Εγκαταστάσεων | 4,821 |
Τρέχουσα Έκδοση | 0.7.6 |
Τελευταία Ενημέρωση | 2019-03-08 |
Ημερομηνία Δημοσίευσης | 2019-03-08 |
Αξιολόγηση | 4.43/5 Συνολικά 54 Αξιολογήσεις |
Προγραμματιστής | jimo1001 |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/jimo1001/multilookup-chrome-extension |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/jimo1001/multilookup-chrome-extension/issues |
Υποστηριζόμενες Γλώσσες | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "default_locale": "ja", "name": "__MSG_ext_name__", "manifest_version": 2, "version": "0.7.6", "description": "__MSG_ext_description__", "icons": { "256": "img\/icon256.png", "128": "img\/icon128.png", "64": "img\/icon64.png", "32": "img\/icon32.png", "16": "img\/icon16.png" }, "permissions": [ "contextMenus", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "run_at": "document_end", "all_frames": false, "js": [ "js\/multilookup.js" ], "css": [ "css\/multilookup.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "options_page": "html\/options.html", "background": { "page": "html\/background.html" }, "browser_action": { "default_icon": "img\/popup.png", "default_title": "MultiLookup", "default_popup": "html\/popup.html" } } |