EasyWiki
Simplifying Wikipedia research. No more multiple tabs.
EasyWiki là gì?
EasyWiki là một tiện ích mở rộng Chrome được phát triển bởi DoSelect, và tính năng chính của nó là "Simplifying Wikipedia research. No more multiple tabs.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng EasyWiki
Tải xuống các tệp mở rộng EasyWiki dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | faihnkmjkajkjcbaginjgdmamhfmhado |
URL Chính Thức | https://chrome.google.com/webstore/detail/easywiki/faihnkmjkajkjcbaginjgdmamhfmhado |
Mô tả | Simplifying Wikipedia research. No more multiple tabs. |
Kích Thước Tệp | 50.31 KB |
Số Lần Cài Đặt | 68 |
Phiên Bản Hiện Tại | 0.2 |
Cập Nhật Lần Cuối | 2015-06-27 |
Ngày Phát Hành | 2015-06-27 |
Đánh Giá | 4.83/5 Tổng số 12 Đánh Giá |
Nhà Phát Triển | DoSelect |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |