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”。

擴展截圖

screenshot

下載WikSort擴展crx文件

下載WikSort擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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 WikSort
ID pideoflnjbdpblpbgdibonfnjnjljbli
官方網址 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"
    }
}