Wikipedia Peek
Shows previews of linked articles on Wikipedia pages
Wikipedia Peek क्या है?
Wikipedia Peek Niklas Gollenstede द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows previews of linked articles on Wikipedia pages"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Wikipedia Peek एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
When you hover a link to another article on Wikipedia.org/Wikia.com or tap on it, a small pop-up will show you the title section of that article. Features: * Full touch support * Load first paragraph and thumbnail * 4 themes (Wikipedia, white, black, grey/blue) * Customizable font-size and transparency * Works in Chrome, Firefox, Opera and Firefox for Android This add-ons code is available on GitHub (https://github.com/NiklasGollenstede/wikipedia-peek). If you have any problems, please report them there (https://github.com/NiklasGollenstede/wikipedia-peek/issues). The add-on itself does not collect any data. Note however, that the article previews are queried form the target host in a separate query each time you hover over a link long enough.
एक्सटेंशन की मूल जानकारी
नाम | Wikipedia Peek |
ID | planddpadjimakmjdpnolpjjphhooiej |
आधिकारिक URL | https://chromewebstore.google.com/detail/wikipedia-peek/planddpadjimakmjdpnolpjjphhooiej |
विवरण | Shows previews of linked articles on Wikipedia pages |
फ़ाइल का आकार | 64.71 KB |
स्थापना संख्या | 396 |
वर्तमान संस्करण | 2.5.3 |
अंतिम अपडेट | 2016-09-08 |
प्रकाशन तिथि | 2016-09-08 |
रेटिंग | 3.67/5 कुल 6 रेटिंग्स |
डेवलपर | Niklas Gollenstede |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://github.com/NiklasGollenstede/wikipedia-peek/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Wikipedia Peek", "short_name": "Wikipedia Peek", "version": "2.5.3", "author": "Niklas Gollenstede", "license": "MPL-2.0", "description": "Shows previews of linked articles on Wikipedia pages", "icons": { "128": "icon.png" }, "minimum_chrome_version": "51.0.0", "applications": { "gecko": { "id": "@wikipedia-peek", "strict_min_version": "47.0" } }, "permissions": [ "notifications", "storage", "*:\/\/*.wikipedia.org\/*", "*:\/\/*.mediawiki.org\/*", "*:\/\/*.wikia.com\/*" ], "background": { "page": "background\/index.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.wikipedia.org\/*", "*:\/\/*.mediawiki.org\/*", "*:\/\/*.wikia.com\/*" ], "match_about_blank": false, "all_frames": false, "run_at": "document_end", "js": [ "node_modules\/es6lib\/require.js", "node_modules\/es6lib\/namespace.js", "node_modules\/es6lib\/object.js", "node_modules\/es6lib\/functional.js", "node_modules\/es6lib\/concurrent.js", "node_modules\/es6lib\/dom.js", "node_modules\/es6lib\/network.js", "node_modules\/es6lib\/index.js", "node_modules\/web-ext-utils\/chrome\/index.js", "node_modules\/web-ext-utils\/options\/index.js", "common\/options.js", "content\/index.js" ] } ], "options_ui": { "page": "ui\/options\/index.html" }, "web_accessible_resources": [], "incognito": "spanning" } |