WikSort
Sort unique words in Wikipedia articles to a new tab
WikSort란 무엇입니까?
WikSort은(는) https://devoresoftware.blogspot.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Sort unique words in Wikipedia articles to a new tab"입니다.
확장 프로그램 스크린샷
WikSort 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
WikSort is a Chrome extension that sorts unique words in a Wikipedia article to a new tab. All words over six characters are alphabetically listed in a text box of the new page, with each entry followed by the usage count in the article. WikSort is useful when editing Wikipedia with Chrome because Chrome's spell checker can help quickly locate misspelled words and inconsistent spelling in an article from the word list generated. Once installed, the script will add a dark red "W" icon on the far right of the address bar for any Wikipedia article address. Click the icon to generate a sorted word list. After a short delay while the page information is loaded and processed, the word list should display in a new tab. The minimum number of characters in the word list can be changed via the extension options, ranging from 3 to 10. The font size of the word list can also be modified in extension options, from 25% to 400% of normal. WikSort is an enhanced version of the older wikSort Greasemonkey and Wikipedia user scripts that previously released. It only works with the English (en.wikipedia.org) version of Wikipedia, but the code can provide a solid base for additional language versions of WikSort. Version 4.0 corrects compatibility problems with more recent versions of Chrome, and has a few improved appearance tweaks.
확장 프로그램 기본 정보
이름 | WikSort |
ID | pideoflnjbdpblpbgdibonfnjnjljbli |
공식 URL | https://chromewebstore.google.com/detail/wiksort/pideoflnjbdpblpbgdibonfnjnjljbli |
설명 | Sort unique words in Wikipedia articles to a new tab |
파일 크기 | 18.18 KB |
설치 횟수 | 20 |
현재 버전 | 4.0 |
최근 업데이트 | 2017-05-29 |
출시 날짜 | 2017-05-29 |
평점 | 3.00/5 총 1 개의 평점 |
개발자 | https://devoresoftware.blogspot.com |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://devoresoftware.blogspot.com |
도움말 페이지 URL | http://devoresoftware.blogspot.com/ |
개인정보 보호 정책 페이지 URL | http://devoresoftware.blogspot.com/p/privacy-policy.html |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "WikSort", "version": "4.0", "manifest_version": 2, "options_page": "options.html", "description": "Sort unique words in Wikipedia articles to a new tab", "permissions": [ "http:\/\/en.wikipedia.org\/*", "https:\/\/en.wikipedia.org\/*", "tabs", "storage" ], "background": { "scripts": [ "background.js" ] }, "page_action": { "default_title": "Wikipedia sorting", "default_icon": { "19": "icon19.png", "38": "icon38.png" } }, "icons": { "48": "icon48.png", "128": "icon128.png" } } |