Wikipedia Lookup - Browser Action

Select a word or two, click the icon in the toolbar, learn something new.

Wikipedia Lookup - Browser Action là gì?

Wikipedia Lookup - Browser Action là một tiện ích mở rộng Chrome được phát triển bởi Damien Brunet, và tính năng chính của nó là "Select a word or two, click the icon in the toolbar, learn something new.".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Wikipedia Lookup - Browser Action

Tải xuống các tệp mở rộng Wikipedia Lookup - Browser Action 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

                        WARNING: Wikipedia Lookup doesn't work on pages opened before the installation.

Select the word(s) you want to look up on Wikipedia, and click the icon in the toolbar.

By default, Wikipedia Lookup auto-detects the language of the page and loads the corresponding version of Wikipedia. You can turn this feature off in the options.

Inside the popup click the green corner to open the full version of Wikipedia in a new tab. It will load the first url you visited. It's a bug but I can't easily fix it.

To access the options, right-click the icon.

You can assign a keyboard shortcut to Wikipedia Lookup: chrome://extensions/shortcuts

Open-source: https://github.com/djrekca/Wikipedia-Lookup---Browser-Action                    

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

Tên Wikipedia Lookup - Browser Action Wikipedia Lookup - Browser Action
ID oikmhlphjkiohmgkdldifggnamddhoea
URL Chính Thức https://chromewebstore.google.com/detail/wikipedia-lookup-browser/oikmhlphjkiohmgkdldifggnamddhoea
Mô tả Select a word or two, click the icon in the toolbar, learn something new.
Kích Thước Tệp 31.04 KB
Số Lần Cài Đặt 938
Phiên Bản Hiện Tại 1.3.9
Cập Nhật Lần Cuối 2021-06-06
Ngày Phát Hành 2020-07-02
Đánh Giá 4.72/5 Tổng số 25 Đánh Giá
Nhà Phát Triển Damien Brunet
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "1.3.9",
    "default_locale": "en",
    "description": "__MSG_extDesc__",
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": {
            "19": "19.png",
            "38": "38.png"
        },
        "default_popup": "popup.html",
        "default_title": "__MSG_extName__"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "notifications",
        "storage"
    ],
    "minimum_chrome_version": "49",
    "manifest_version": 2
}