Wikipedia Popup

Wikipedia popup for selected text

Wikipedia Popup là gì?

Wikipedia Popup là một tiện ích mở rộng Chrome được phát triển bởi David, và tính năng chính của nó là "Wikipedia popup for selected text".

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

screenshot
screenshot

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

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

                        Select some text on a webpage and press Alt+W to quickly view the Wikipedia entry for your selection.

𝐅𝐞𝐚𝐭𝐮𝐫𝐞𝐬:
• Customizable default popup panel size (Click extension icon to configure).
• Does not clutter history.
• Uses mobile version of Wikipedia for enhanced readability.
• Syncs settings across Chrome browsers with your account.
• Context menu option for when you're tired of spamming hotkeys.
• Supports over 300 languages of Wikipedia.

To change the default hotkey, click on the extension icon and click the 'Configure hotkey' button.

source code:
https://github.com/D4D3VD4V3/wikipedia-popup-chrome-extension                    

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

Tên Wikipedia Popup Wikipedia Popup
ID cleeghampfhpphpmcjimpmcamadmmilm
URL Chính Thức https://chromewebstore.google.com/detail/wikipedia-popup/cleeghampfhpphpmcjimpmcamadmmilm
Mô tả Wikipedia popup for selected text
Kích Thước Tệp 12.51 KB
Số Lần Cài Đặt 312
Phiên Bản Hiện Tại 1.3.37
Cập Nhật Lần Cuối 2022-02-08
Ngày Phát Hành 2019-01-19
Đánh Giá 5.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển David
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/D4D3VD4V3/wikipedia-popup-chrome-extension
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wikipedia Popup",
    "version": "1.3.37",
    "description": "Wikipedia popup for selected text",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus"
    ],
    "commands": {
        "selected-text": {
            "suggested_key": {
                "default": "Alt+W"
            },
            "description": "Invoke Wikipedia Popup"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Wikipedia Popup (Select a word and hit Alt+W)",
        "default_popup": "settings.html"
    },
    "icons": {
        "16": "icon\/wikipedia-logo-16.png",
        "128": "icon\/wikipedia-logo-128.png"
    }
}