Wikipedia Link Expander

Changes the title text for wikipedia links to be the first paragraph of that page

Vad är Wikipedia Link Expander?

Wikipedia Link Expander är en Chrome-tillägg utvecklad av jacloar, och dess huvudfunktion är "Changes the title text for wikipedia links to be the first paragraph of that page".

Tilläggsskärmbilder

screenshot

Ladda ner Wikipedia Link Expander-förlängningens CRX-fil

Ladda ner Wikipedia Link Expander-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn Wikipedia Link Expander Wikipedia Link Expander
ID olcpeoibndddjeocibmiabmohnedcdif
Officiell webbadress https://chrome.google.com/webstore/detail/wikipedia-link-expander/olcpeoibndddjeocibmiabmohnedcdif
Beskrivning Changes the title text for wikipedia links to be the first paragraph of that page
Filstorlek 48.91 KB
Antal Installationer 45
Aktuell Version 1.0.1
Senast Uppdaterad 2015-02-08
Publiceringsdatum 2015-02-08
Betyg 5.00/5 Totalt 4 Betyg
Utvecklare jacloar
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}