Context Lookups

This extension adds configurable lookup options for the context menu of selected text

Context Lookups là gì?

Context Lookups là một tiện ích mở rộng Chrome được phát triển bởi Alec Mitnik, và tính năng chính của nó là "This extension adds configurable lookup options for the context menu of selected text".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Context Lookups

Tải xuống các tệp mở rộng Context Lookups dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Quickly search information as you browse.  Just select the text you want to look up, bring up the right-click context menu, and select the configured lookup option that you want.

Need to quickly check the definition of "bi-weekly" when someone emails you about a meeting?  Curious about the literal meaning of "je ne sais quoi" when it comes up in an article?  Want to know who exactly "Robert Walpole" is when someone mentions them in a comment?

Context Lookups has you covered!  Get up to speed or satisfy your curiosity in no time at all, then be on your merry way.  You can set the results to appear as regular webpages, or make things extra convenient with simplified popup windows.

This much can already be done with just the default lookups, but the possibilities go far beyond that.  Copy the search query URL base of whatever website you want to use, and create a context menu item for it in the extension popup, it's that simple.  Just remember to save your changes!

Here are a couple more to try:

Synonyms/Antonyms
- Use "https://www.thesaurus.com/browse/" as the URL base.

Rhymes
- Use "https://www.rhymezone.com/r/rhyme.cgi?typeofrhyme=perfect&Word=" as the URL base.

Note that ampersand characters (&) in context menu labels are used to assign shortcut keys.  To make a letter within the label the shortcut key for the option (while it's shown), simply put an ampersand in front of it.  For example, set the label as "Rh&ymes" to make a context menu option "Rhymes" with the shortcut key 'y'.  To put an ampersand in the actual label, simply include it twice, as in "Synonyms && Antonyms" to get a label of "Synonyms & Antonyms".

This is my first extension, so any feedback is appreciated.

NOTE: Due to limitations with Chrome, results displayed in a popup are unfortunately restricted to the primary display.  If using multiple displays, try to keep the browser window using the extension on the primary display.  Alternatively, you can set the results to display as normal pages instead.

Version 2:
Now supports parent menus!

Version 3:
Updated to use Manifest version 3.  Apologies for any resultant issues I might have missed.  After a couple revisions, I think I've got it working with pre-existing saved data, but if you still encounter issues, I recommend saving your loaded configurations from the extension popup to update the saved data.

Opening as a regular window popup is now supported, by simply selecting the center of the slider.

Changed the default definition lookup to a simple Google search query, as this has better fallback behavior when a definition isn't found in the primary source.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Context Lookups Context Lookups
ID pdpcaajpbemllmagmijafgcnpmlbhhjd
URL Chính Thức https://chromewebstore.google.com/detail/context-lookups/pdpcaajpbemllmagmijafgcnpmlbhhjd
Mô tả This extension adds configurable lookup options for the context menu of selected text
Kích Thước Tệp 30.96 KB
Số Lần Cài Đặt 51
Phiên Bản Hiện Tại 3.2
Cập Nhật Lần Cuối 2022-10-21
Ngày Phát Hành 2019-02-04
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Alec Mitnik
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Context Lookups",
    "description": "This extension adds configurable lookup options for the context menu of selected text",
    "version": "3.2",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon16.png",
            "24": "icon24.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "64": "icon64.png",
            "128": "icon128.png"
        }
    },
    "icons": {
        "16": "icon16.png",
        "24": "icon24.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "background": {
        "service_worker": "background.js"
    }
}