Wikipedia Plus

Utilities to improve the user experience of Wikipedia.org for avid users.

Wikipedia Plus क्या है?

Wikipedia Plus https://falcondai.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Utilities to improve the user experience of Wikipedia.org for avid users."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Wikipedia Plus एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Wikipedia Plus supplements Wikipedia.org's existing web interface with some convenient behaviors I always wanted myself. 

Unlike other extensions which aggressively modify or interfere with the Wikipedia website look and feel, this extension respects the original Wikipedia design and makes minimal changes. I believe that the most empowering tools are invisible. 

Features:
* show short text snippets for Wikipedia's internal entries when hover
* turn section titles into in-page links for easier bookmarking and sharing particular sections
* enlarge images when hover
  * zoom level is adjustable
  * adjusted enlarged image placement for right-to-left language pages

This is an open-source software. Check out the source at: https://github.com/falcondai/chrome-ext-wikipedia

Privacy: This extension does NOT record or send your browsing activities to any remote servers. Your browsing activities at wikipedia.org is not accessible by any third party including me. The permission to "access your data on *.wikipedia.org" is only used to insert the necessary UI-modifying scripts.

Disclaimer: Wikipedia and its associated marks are official trademarks of the Wikimedia Foundation in the United States and other countries. These marks are being used under license by the Wikimedia Foundation. Wikipedia Plus Chrome Extension is not endorsed by or affiliated with the Wikimedia Foundation.                    

एक्सटेंशन की मूल जानकारी

नाम Wikipedia Plus Wikipedia Plus
ID fkfdafnifmdahipdpcbpefhjlceippna
आधिकारिक URL https://chromewebstore.google.com/detail/wikipedia-plus/fkfdafnifmdahipdpcbpefhjlceippna
विवरण Utilities to improve the user experience of Wikipedia.org for avid users.
फ़ाइल का आकार 84 KB
स्थापना संख्या 698
वर्तमान संस्करण 0.2.0
अंतिम अपडेट 2013-09-24
प्रकाशन तिथि 2013-09-23
रेटिंग 4.06/5 कुल 16 रेटिंग्स
डेवलपर https://falcondai.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/falcondai/chrome-ext-wikipedia
सहायता पृष्ठ URL https://github.com/falcondai/chrome-ext-wikipedia/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wikipedia Plus",
    "version": "0.2.0",
    "manifest_version": 2,
    "author": "Falcon Dai",
    "description": "Utilities to improve the user experience of Wikipedia.org for avid users.",
    "icons": {
        "128": "\/assets\/image\/icon.png"
    },
    "permissions": [
        "storage",
        "notifications"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "main.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.wikipedia.org\/*"
            ],
            "js": [
                "vendor\/jquery.js",
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "options_page": "options.html",
    "web_accessible_resources": [
        "\/assets\/image\/icon.png"
    ]
}