Wikipedia Popup
Wikipedia popup for selected text
Wikipedia Popup क्या है?
Wikipedia Popup David द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Wikipedia popup for selected text"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Wikipedia Popup एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" } } |