Wikipedia Popup
Wikipedia popup for selected text
什麼是Wikipedia Popup?
Wikipedia Popup是由David開發的Chrome擴展程式,該擴展的主要功能是“Wikipedia popup for selected text”。
擴展截圖
下載Wikipedia Popup擴展crx文件
下載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 擴展基本資訊
| 名稱 | |
| ID | cleeghampfhpphpmcjimpmcamadmmilm |
| 官方網址 | 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"
}
} | |