Wiki Preview
Preview Wikipedia links for easier reading.
Wat is Wiki Preview?
Wiki Preview is een Chrome-extensie ontwikkeld door https://ictech.fr, en de belangrijkste functie is "Preview Wikipedia links for easier reading.".
Extensie Screenshots
Download het CRX-bestand van de extensie Wiki Preview
Download Wiki Preview-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
When you're reading a Wikipedia articles, you often just want to have a glimpse of what other articles are about, without getting distracted from your main article.
This extension allows you to view a summary of any link on Wikipedia (first paragraph). This way you can focus on your main article you are reading, and still have a glimpse of what the other articles are about. Basisinformatie over de Extensie
| Naam | |
| ID | keodbghcggpcaaihokbhmeehadnkemgc |
| Officiële URL | https://chromewebstore.google.com/detail/wiki-preview/keodbghcggpcaaihokbhmeehadnkemgc |
| Beschrijving | Preview Wikipedia links for easier reading. |
| Bestandsgrootte | 138 KB |
| Aantal Installaties | 148 |
| Huidige Versie | 1.0 |
| Laatst Bijgewerkt | 2014-05-30 |
| Publicatiedatum | 2014-05-29 |
| Beoordeling | 5.00/5 Totaal 8 Beoordelingen |
| Ontwikkelaar | https://ictech.fr |
| Betalingswijze | free |
| Extensiewebsite | http://ictech.fr/wiki/ |
| Help Pagina-URL | http://ictech.fr/wiki/ |
| Ondersteunde Talen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Wiki Preview",
"version": "1.0",
"homepage_url": "http:\/\/ictech.fr\/wiki\/",
"description": "Preview Wikipedia links for easier reading.",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon.png"
},
"browser_action": [],
"background": {
"scripts": [
"background.js"
]
},
"web_accessible_resources": [
"*.map"
],
"content_scripts": [
{
"matches": [
"http:\/\/*.wikipedia.org\/*"
],
"css": [
"overlay.css"
],
"js": [
"jquery-2.0.3.min.js",
"iframeResizer.min.js",
"wikipreview_ch.js"
]
}
]
} | |