WikSort

Sort unique words in Wikipedia articles to a new tab

WikSort là gì?

WikSort là một tiện ích mở rộng Chrome được phát triển bởi https://devoresoftware.blogspot.com, và tính năng chính của nó là "Sort unique words in Wikipedia articles to a new tab".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng WikSort

Tải xuống các tệp mở rộng WikSort 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

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên WikSort WikSort
ID pideoflnjbdpblpbgdibonfnjnjljbli
URL Chính Thức https://chromewebstore.google.com/detail/wiksort/pideoflnjbdpblpbgdibonfnjnjljbli
Mô tả Sort unique words in Wikipedia articles to a new tab
Kích Thước Tệp 18.18 KB
Số Lần Cài Đặt 20
Phiên Bản Hiện Tại 4.0
Cập Nhật Lần Cuối 2017-05-29
Ngày Phát Hành 2017-05-29
Đánh Giá 3.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://devoresoftware.blogspot.com
Loại Thanh Toán free
Trang Web Mở Rộng http://devoresoftware.blogspot.com
URL Trang Trợ Giúp http://devoresoftware.blogspot.com/
URL Trang Chính Sách Bảo Mật http://devoresoftware.blogspot.com/p/privacy-policy.html
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}