Wikipedia Anywhere

Access to a floating mobile version of Wikipedia on any webpage

Was ist Wikipedia Anywhere?

Wikipedia Anywhere ist eine Chrome-Erweiterung, die von rynu.smith entwickelt wurde, und ihr Hauptmerkmal ist "Access to a floating mobile version of Wikipedia on any webpage".

Erweiterungsscreenshots

screenshot

Wikipedia Anywhere-Erweiterungs-CRX-Datei herunterladen

Laden Sie Wikipedia Anywhere-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Wikipedia Anywhere Wikipedia Anywhere
ID gnihphapfnoidhmgooeembehjfmnphki
Offizielle URL https://chromewebstore.google.com/detail/wikipedia-anywhere/gnihphapfnoidhmgooeembehjfmnphki
Beschreibung Access to a floating mobile version of Wikipedia on any webpage
Dateigröße 32.09 KB
Installationsanzahl 429
Aktuelle Version 0.2.0
Letztes Update 2021-07-18
Veröffentlichungsdatum 2017-08-22
Bewertung 3.89/5 Insgesamt 9 Bewertungen
Entwickler rynu.smith
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://add0n.com/page-anywhere.html?from=wikipedia
Hilfeseite URL https://add0n.com/page-anywhere.html?from=wikipedia
URL der Datenschutzrichtlinien-Seite https://add0n.com/policies/rynu.smith.txt
Unterstützte Sprachen 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"
    }
}