EasyWiki
Simplifying Wikipedia research. No more multiple tabs.
EasyWiki란 무엇입니까?
EasyWiki은(는) DoSelect에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simplifying Wikipedia research. No more multiple tabs."입니다.
확장 프로그램 스크린샷
EasyWiki 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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" ] } ] } |