Wikipedia Anywhere

Access to a floating mobile version of Wikipedia on any webpage

Wikipedia Anywhere क्या है?

Wikipedia Anywhere rynu.smith द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Access to a floating mobile version of Wikipedia on any webpage"।

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

screenshot

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

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

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

                        This extension brings the mobile version of Wikipedia to any website to lookup terms without leaving the page. The extension has no visual button. To activate, select a text on the active tab and press the "W" icon that appears on top of the mouse pointer. To hide the panel, select anywhere outside the mini Wikipedia panel.

Use cases:
Look at the meaning of a technical term without leaving the panel.
Get more info about a topic with an embedded Wikipedia 
Find a song track details right inside an online media player (YouTube Music or Spotify)
Get technical review about a movie without leaving IMDB

Notes:
1. To improve the loading speed, the mobile version of Wikipedia is used. You can change this from the options page.
2. The size of the panel as well as the bubble's position is customizable. 
3. If you prefer a localized version of Wikipedia, change the default "en" locale ( the language of the loaded Wikipedia page) from the options page.                    

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

नाम Wikipedia Anywhere Wikipedia Anywhere
ID gnihphapfnoidhmgooeembehjfmnphki
आधिकारिक URL https://chromewebstore.google.com/detail/wikipedia-anywhere/gnihphapfnoidhmgooeembehjfmnphki
विवरण Access to a floating mobile version of Wikipedia on any webpage
फ़ाइल का आकार 32.09 KB
स्थापना संख्या 429
वर्तमान संस्करण 0.2.0
अंतिम अपडेट 2021-07-18
प्रकाशन तिथि 2017-08-22
रेटिंग 3.89/5 कुल 9 रेटिंग्स
डेवलपर rynu.smith
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://add0n.com/page-anywhere.html?from=wikipedia
सहायता पृष्ठ URL https://add0n.com/page-anywhere.html?from=wikipedia
गोपनीयता नीति पृष्ठ URL https://add0n.com/policies/rynu.smith.txt
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wikipedia Anywhere",
    "description": "Access to a floating mobile version of Wikipedia on any webpage",
    "version": "0.2.0",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "data\/icons\/32.png",
                "data\/icons\/loading.svg"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*.m.wikipedia.org\/*"
            ],
            "js": [
                "data\/inject\/inject.js"
            ],
            "css": [
                "data\/inject\/inject.css"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "homepage_url": "https:\/\/add0n.com\/page-anywhere.html?from=wikipedia",
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png"
    },
    "options_ui": {
        "page": "data\/options\/index.html"
    }
}