Wikipedia Link Expander
Changes the title text for wikipedia links to be the first paragraph of that page
什么是Wikipedia Link Expander?
Wikipedia Link Expander是由jacloar开发的Chrome扩展程序,该扩展的主要功能是“Changes the title text for wikipedia links to be the first paragraph of that page”。
扩展截图
下载Wikipedia Link Expander扩展crx文件
下载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" ] } ] } |