Wikipedia Plus

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

Cos'è Wikipedia Plus?

Wikipedia Plus è un'estensione di Chrome sviluppata da https://falcondai.com, e la sua funzione principale è "Utilities to improve the user experience of Wikipedia.org for avid users.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Wikipedia Plus

Scarica i file di estensione Wikipedia Plus in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Wikipedia Plus Wikipedia Plus
ID fkfdafnifmdahipdpcbpefhjlceippna
URL Ufficiale https://chromewebstore.google.com/detail/wikipedia-plus/fkfdafnifmdahipdpcbpefhjlceippna
Descrizione Utilities to improve the user experience of Wikipedia.org for avid users.
Dimensione del File 84 KB
Conteggio Installazioni 698
Versione Corrente 0.2.0
Ultimo Aggiornamento 2013-09-24
Data di Pubblicazione 2013-09-23
Valutazione 4.06/5 Totale 16 Valutazioni
Sviluppatore https://falcondai.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/falcondai/chrome-ext-wikipedia
URL della Pagina di Aiuto https://github.com/falcondai/chrome-ext-wikipedia/issues
Lingue Supportate 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"
    ]
}