Wiki Smart
A simple, quick and user friendly extension to enhance your experience on Wikipedia websites.
Wiki Smart란 무엇입니까?
Wiki Smart은(는) https://rark.in에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple, quick and user friendly extension to enhance your experience on Wikipedia websites."입니다.
확장 프로그램 스크린샷
Wiki Smart 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A simple, quick and user friendly extension to enhance your experience on Wikipedia articles. It saves your data usage and gives you articles' short snippets without diverting you from the current article. Just hover your mouse on links that you see in the articles.
확장 프로그램 기본 정보
이름 | Wiki Smart |
ID | dknkepbldbfefkfockeacnoaiclpepca |
공식 URL | https://chromewebstore.google.com/detail/wiki-smart/dknkepbldbfefkfockeacnoaiclpepca |
설명 | A simple, quick and user friendly extension to enhance your experience on Wikipedia websites. |
파일 크기 | 159 KB |
설치 횟수 | 37 |
현재 버전 | 1.0 |
최근 업데이트 | 2016-10-23 |
출시 날짜 | 2016-10-23 |
평점 | 5.00/5 총 12 개의 평점 |
개발자 | https://rark.in |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://rark.in |
도움말 페이지 URL | http://facebook.com/rarkofficial |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Wiki Smart", "description": "A simple, quick and user friendly extension to enhance your experience on Wikipedia websites.", "version": "1.0", "browser_action": { "default_icon": "wiki_smart_16px.png", "default_popup": "popup.html", "default_title": "Wiki Smart" }, "icons": { "16": "wiki_smart_16px.png", "24": "wiki_smart_24px.png", "32": "wiki_smart_32px.png", "48": "wiki_smart_48px.png", "64": "wiki_smart_64px.png", "128": "wiki_smart_128px.png" }, "content_scripts": [ { "matches": [ "http:\/\/*.wikipedia.org\/wiki\/*", "https:\/\/*.wikipedia.org\/wiki\/*" ], "css": [ "wiki_styles.css" ], "js": [ "wiki_jquery_3.1.0.js", "wiki_scripts.js" ] } ], "background": { "scripts": [ "background.js" ] } } |