Dictionary of Numbers

Putting numbers in human terms.

Dictionary of Numbersとは何ですか?

Dictionary of NumbersはGlen Chiacchieriによって開発されたChromeの拡張機能で、その主な機能は「Putting numbers in human terms.」です。

拡張機能のスクリーンショット

screenshot

Dictionary of Numbers拡張機能のCRXファイルをダウンロード

Dictionary of Numbers拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A dictionary takes words you're unfamiliar with and puts them in terms you're familiar with. Dictionary of Numbers takes numbers you're unfamiliar with and puts them in terms you can understand.

Dictionary of Numbers scans the web pages you visit looking for numbers it can understand. When it finds one, it will give you a human-understandable meaning for that number. For example, Dictionary of Numbers will take this sentence:

"The hurricane displaced over 100,000 people and cost an estimated $3 million in damages."

And turn it into something like this:

"The hurricane displaced over 100,000 people [≈ population of Aruba] and caused an estimated $3 million [≈ cost of 30-second Super Bowl advertisement] in damages."

It works for hundreds of units and has several thousand human-understandable explanations! If you don't quite understand the explanation, try hovering over it to see the other explanations for what this quantity is like; some will have more options.

Dictionary of Numbers also includes a search box for typing/pasting in numbers not in web pages, and will automatically suggest meanings for numbers you type in text boxes (beta feature).

This extension has the permission to "access your data on all websites" because it needs that to inject explanations into the page. It never does anything with your data.

If something is wrong, please tell me directly so I can fix it!

Version 1.6.4 (2017/08/02): Fix minor parsing issue.
Version 1.6.3 (2013/10/28): Fix minor styling errors.
Version 1.6.1 (2013/09/09): Speed improvements.
Version 1.5.8 (2013/08/27): Fix linux installs! :D
Version 1.5.7 (2013/08/12): Minor styling fix.
Version 1.5.6 (2013/08/08): Fix JavaScript console errors.
Version 1.5.5 (2013/08/03): Fix interpretation of 'mm Hg' as millimeters.
Version 1.5.4 (2013/07/29): Fix error that caused the extension not to work introduced in 1.5.3.
Version 1.5.3 (2013/07/28): Now remembers whether it was on or off last time you opened Chrome.
Version 1.5.2 (2013/07/18): More speed improvements.
Version 1.5.1 (2013/07/16): Speed improvements, especially on Google Images.
Version 1.5 (2013/07/14): Remove parentheses from comparisons to ease reading.
Version 1.4.8 (2013/07/12): Minor styling fix.
Version 1.4.7 (2013/07/07): No longer parsing 'W' as Watts due to too many false positives.
Version 1.4.6 (2013/06/26): Minor styling fixes.
Version 1.4.4 (2013/06/08): MASSIVE speed improvements and minor quantity parsing fixes.
Version 1.3.0 (2013/06/01): Now parsing shortened orders of magnitude on currency e.g. '$100k' will be parsed as $100,000.
Version 1.2 (2013/05/23): Fix bug with removing content in textareas and hopefully speed improvements.
Version 1.1.1: Disable as-you-type suggestions to stop modification of textareas.
Version 1.1.0: Don't show lower-end money amounts people are already familiar with.
Version 1.0.10: More minor styling fixes.
Version 1.0.9: Minor styling fixes.                    

拡張機能の基本情報

名前 Dictionary of Numbers Dictionary of Numbers
ID ahhgdmkmcgahbkcbmlkpmmamemlkajaf
公式URL https://chromewebstore.google.com/detail/dictionary-of-numbers/ahhgdmkmcgahbkcbmlkpmmamemlkajaf
説明 Putting numbers in human terms.
ファイルサイズ 199 KB
インストール数 7,856
現在のバージョン 1.6.4
最終更新日 2017-08-02
公開日 2017-08-02
評価 3.81/5 合計 236 レビュー
開発者 Glen Chiacchieri
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト http://dictionaryofnumbers.com
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "version": "1.6.4",
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon19.png"
        },
        "default_title": "Dictionary of Numbers",
        "default_popup": "src\/popup.html"
    },
    "permissions": [
        "unlimitedStorage"
    ],
    "background": {
        "scripts": [
            "lib\/underscore-min.js",
            "src\/DictionaryofNumbers.background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "src\/content_script.css"
            ],
            "js": [
                "lib\/underscore-min.js",
                "lib\/underscore.string.min.js",
                "lib\/jquery.min.js",
                "lib\/jquery.safeReplace.js",
                "lib\/async.min.js",
                "lib\/bootstrap-tooltip.js",
                "src\/DictionaryofNumbers.js",
                "src\/content_script.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "src\/content_script.css"
    ]
}