Wiki Preview
Preview Wikipedia links for easier reading.
什么是Wiki Preview?
Wiki Preview是由https://ictech.fr开发的Chrome扩展程序,该扩展的主要功能是“Preview Wikipedia links for easier reading.”。
扩展截图
下载Wiki Preview扩展crx文件
下载Wiki Preview扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | keodbghcggpcaaihokbhmeehadnkemgc |
| 官方URL | https://chromewebstore.google.com/detail/wiki-preview/keodbghcggpcaaihokbhmeehadnkemgc |
| 简介 | Preview Wikipedia links for easier reading. |
| 文件大小 | 138 KB |
| 安装次数 | 148 |
| 当前版本 | 1.0 |
| 更新时间 | 2014-05-30 |
| 上架时间 | 2014-05-29 |
| 评分 | 5.00/5 共8次评分 |
| 开发者 | https://ictech.fr |
| 付费类型 | free |
| 扩展官网 | http://ictech.fr/wiki/ |
| 帮助页面URL | http://ictech.fr/wiki/ |
| 支持的语言 | 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"
]
}
]
} | |