Wikipedia Plus

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

Τι είναι το Wikipedia Plus;

Το Wikipedia Plus είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://falcondai.com, και η κύρια λειτουργία του είναι "Utilities to improve the user experience of Wikipedia.org for avid users.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Wikipedia Plus

Λήψη αρχείων επέκτασης Wikipedia Plus σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
    ]
}