Wikipedia Link Expander
Changes the title text for wikipedia links to be the first paragraph of that page
Cos'è Wikipedia Link Expander?
Wikipedia Link Expander è un'estensione di Chrome sviluppata da jacloar, e la sua funzione principale è "Changes the title text for wikipedia links to be the first paragraph of that page".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Wikipedia Link Expander
Scarica i file di estensione Wikipedia Link Expander 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 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!
Informazioni di Base sull'Estensione
Nome | |
ID | olcpeoibndddjeocibmiabmohnedcdif |
URL Ufficiale | https://chrome.google.com/webstore/detail/wikipedia-link-expander/olcpeoibndddjeocibmiabmohnedcdif |
Descrizione | Changes the title text for wikipedia links to be the first paragraph of that page |
Dimensione del File | 48.91 KB |
Conteggio Installazioni | 45 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2015-02-08 |
Data di Pubblicazione | 2015-02-08 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | jacloar |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |