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
公式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"
    }
}