Easy Wikipedia

Popup info box on Wikipedia.org articles, Omnibox search with keword 'w', and right-click search a highlighted term.

Easy Wikipedia क्या है?

Easy Wikipedia joshwdev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Popup info box on Wikipedia.org articles, Omnibox search with keword 'w', and right-click search a highlighted term."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Easy Wikipedia makes it easy to search and access information from Wikipedia.org

-Term Hover Tool
     When you go to a Wikipedia article all possible terms will be denoted with a simple underline. Check what the term means by hovering over an underlined term. A description will pop up in a couple of seconds.

-Right-Click Search
     On any website, highlight a term, right-click it and choose "Search Wikipedia for ..."

-Omnibox Search
     Use the keyword "w". It's simple, type 'w' then a space (or tab) followed by your term to search.

Why Easy Wikipedia?
     Well, I don't have ads. I didn't like them and I'm not doing this for money, but instead for fun and learning. (I'm a Computer Science major after all)
     I personally use it to quickly understand technical words in articles I'm researching for school.
     This would be a great default addition for schools/businesses who use Wikipedia regularly!


>> Update 0.8.4.1
- Update link selection criteria.
>> Update 0.8.4
- Added How-To, and contact links.
>> Update 0.8.3
- Stops the entire page from scrolling when you scroll within the popup.
>> Update 0.9
- Added right-click search, and Omnibox keyword "w" search                    

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

नाम Easy Wikipedia Easy Wikipedia
ID lkppjpfgjmpbmlfhakbknmiebfklmeng
आधिकारिक URL https://chromewebstore.google.com/detail/easy-wikipedia/lkppjpfgjmpbmlfhakbknmiebfklmeng
विवरण Popup info box on Wikipedia.org articles, Omnibox search with keword 'w', and right-click search a highlighted term.
फ़ाइल का आकार 41.01 KB
स्थापना संख्या 235
वर्तमान संस्करण 0.9
अंतिम अपडेट 2014-12-28
प्रकाशन तिथि 2014-12-28
डेवलपर joshwdev
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Easy Wikipedia",
    "version": "0.9",
    "manifest_version": 2,
    "description": "Popup info box on Wikipedia.org articles, Omnibox search with keword 'w', and right-click search a highlighted term.",
    "omnibox": {
        "keyword": "w"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "homepage_url": "http:\/\/wikipedia.org\/",
    "permissions": [
        "contextMenus"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Easy Wikipedia",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.wikipedia.org\/wiki\/*"
            ],
            "exclude_matches": [
                "http:\/\/*.wikipedia.org\/wiki\/Main_Page"
            ],
            "css": [
                "mystyle.css"
            ],
            "js": [
                "jquery-2.0.3.min.js",
                "mycode.js"
            ],
            "run_at": "document_idle"
        }
    ]
}