EasyWiki
Simplifying Wikipedia research. No more multiple tabs.
什麼是EasyWiki?
EasyWiki是由DoSelect開發的Chrome擴展程式,該擴展的主要功能是“Simplifying Wikipedia research. No more multiple tabs.”。
擴展截圖
下載EasyWiki擴展crx文件
下載EasyWiki擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
EasyWiki is a Chrome extension that simplifies your journey down the Wikipedia rabbit-hole! No more 57 tabs! We love popovers!
## How does it work?
* Install the extension.
* Turn EasyWiki `ON` by clicking the EasyWiki button on the toolbar.
* Now, whenever you hover on a [Wikipedia](http://en.wikipedia.org) link on any website, a popover will show up with the description of that article, so that you do not have to open a new tab every time.
## Will it create a mess of popovers?
Most certainly, it wouldn't. It waits for at least 700 milliseconds before bringing up the popover.
- - -
Crafted with love by @sanketsaurav and @avckp. 擴展基本資訊
| 名稱 | |
| ID | faihnkmjkajkjcbaginjgdmamhfmhado |
| 官方網址 | https://chrome.google.com/webstore/detail/easywiki/faihnkmjkajkjcbaginjgdmamhfmhado |
| 簡介 | Simplifying Wikipedia research. No more multiple tabs. |
| 檔案大小 | 50.31 KB |
| 安裝次數 | 68 |
| 目前版本 | 0.2 |
| 更新時間 | 2015-06-27 |
| 上架時間 | 2015-06-27 |
| 評分 | 4.83/5 共 12 次評分 |
| 開發者 | DoSelect |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "EasyWiki",
"version": "0.2",
"manifest_version": 2,
"default_locale": "en",
"description": "Simplifying Wikipedia research. No more multiple tabs.",
"homepage_url": "https:\/\/github.com\/sanketsaurav\/easywiki",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"browser_action": {
"default_icon": {
"19": "icons\/icon48.png",
"38": "icons\/icon48.png"
},
"default_title": "Toggle EasyWiki"
},
"background": {
"scripts": [
"src\/bg\/background.js"
],
"persistent": true
},
"permissions": [
"*:\/\/*.wikipedia.org\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"css": [
"src\/inject\/inject.css"
]
},
{
"matches": [
"*:\/\/*.wikipedia.org\/*"
],
"js": [
"js\/jquery\/jquery.min.js",
"js\/tooltip.js",
"js\/popover.js",
"src\/inject\/inject.js"
]
}
]
} | |