Wikipedia Link Expander
Changes the title text for wikipedia links to be the first paragraph of that page
Τι είναι το Wikipedia Link Expander;
Το Wikipedia Link Expander είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jacloar, και η κύρια λειτουργία του είναι "Changes the title text for wikipedia links to be the first paragraph of that page".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Wikipedia Link Expander
Λήψη αρχείων επέκτασης Wikipedia Link Expander σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Wikipedia Link Expander is for people who enjoy browsing articles on Wikipedia and exploring all the links. This extension allows you to hover over a link in Wikipedia and view the first paragraph of information in that article so you can read without clicking away. It isn't very good, it is incredibly buggy, and there are probably better alternatives out there, but we wanted to show off our version!
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | olcpeoibndddjeocibmiabmohnedcdif |
Επίσημο URL | https://chrome.google.com/webstore/detail/wikipedia-link-expander/olcpeoibndddjeocibmiabmohnedcdif |
Περιγραφή | Changes the title text for wikipedia links to be the first paragraph of that page |
Μέγεθος Αρχείου | 48.91 KB |
Αριθμός Εγκαταστάσεων | 45 |
Τρέχουσα Έκδοση | 1.0.1 |
Τελευταία Ενημέρωση | 2015-02-08 |
Ημερομηνία Δημοσίευσης | 2015-02-08 |
Αξιολόγηση | 5.00/5 Συνολικά 4 Αξιολογήσεις |
Προγραμματιστής | jacloar |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Wikipedia Link Expander", "description": "Changes the title text for wikipedia links to be the first paragraph of that page", "version": "1.0.1", "icons": { "16": "images\/wikipediaicon16.png", "48": "images\/wikipediaicon48.png", "128": "images\/wikipediaicon128.png" }, "permissions": [ "tabs", "activeTab", "contentSettings", "http:\/\/*.wikipedia.org\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*.wikipedia.org\/*" ], "js": [ "jquery-1.11.2.min.js", "wikipediaHover.js" ] } ] } |