Wikipedia Popup

Wikipedia popup for selected text

Wikipedia Popupคืออะไร?

Wikipedia Popup เป็นส่วนขยายของ Chrome ที่พัฒนาโดย David และคุณลักษณะหลักของมันคือ "Wikipedia popup for selected text"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Wikipedia Popup

ดาวน์โหลดไฟล์ส่วนขยาย Wikipedia Popup ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Wikipedia Popup Wikipedia Popup
ID cleeghampfhpphpmcjimpmcamadmmilm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/wikipedia-popup/cleeghampfhpphpmcjimpmcamadmmilm
คำอธิบาย Wikipedia popup for selected text
ขนาดไฟล์ 12.51 KB
จำนวนการติดตั้ง 312
เวอร์ชันปัจจุบัน 1.3.37
อัปเดตครั้งล่าสุด 2022-02-08
วันที่เผยแพร่ 2019-01-19
คะแนน 5.00/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา David
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/D4D3VD4V3/wikipedia-popup-chrome-extension
ภาษาที่รองรับ 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"
    }
}