Wikipedia Popup
Wikipedia popup for selected text
Was ist Wikipedia Popup?
Wikipedia Popup ist eine Chrome-Erweiterung, die von David entwickelt wurde, und ihr Hauptmerkmal ist "Wikipedia popup for selected text".
Erweiterungsscreenshots
Wikipedia Popup-Erweiterungs-CRX-Datei herunterladen
Laden Sie Wikipedia Popup-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | cleeghampfhpphpmcjimpmcamadmmilm |
| Offizielle URL | https://chromewebstore.google.com/detail/wikipedia-popup/cleeghampfhpphpmcjimpmcamadmmilm |
| Beschreibung | Wikipedia popup for selected text |
| Dateigröße | 12.51 KB |
| Installationsanzahl | 312 |
| Aktuelle Version | 1.3.37 |
| Letztes Update | 2022-02-08 |
| Veröffentlichungsdatum | 2019-01-19 |
| Bewertung | 5.00/5 Insgesamt 6 Bewertungen |
| Entwickler | David |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/D4D3VD4V3/wikipedia-popup-chrome-extension |
| Unterstützte Sprachen | 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"
}
} | |