ngram viewer

The changes in popularity of the words over the last centuries

ngram viewer란 무엇입니까?

ngram viewer은(는) partaab.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The changes in popularity of the words over the last centuries"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

ngram viewer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        What's new in version 1.1:
  *Now you can compare phrases by separating them with comma
  *Beginning year can be set to 1500 or 1800
  *An unnecessary permission was removed
  *Better code under the hood

I couldn't believe something similar to this hasn't been made already. Not even by Google (the owner of data). So I made this for my personal use; thought somebody else might find it useful so I shared it. You are more than welcome to contribute by suggesting code, sending feedback and etc.

This tool does not require any special permissions or something like that. No data would be collected from you by the extension. Use it freely.

The code could not be any simpler than this. What this tool does is just connecting you to "Google Ngram Viewer", which is a tool to see how the use of the given word has increased or decreased in the past. As someone who speaks English as the second language, my personal purpose of using Ngrams has been checking the new words I'm learning. Sometimes words become obsolete rapidly; in such cases, to have a better word choice it's better to use a Synonym.

The shortcut key of the tool is Alt+N. When you opened it, type in the word (you can also type word combinations and names) then press Enter.

***********************************************************
Quoting from Google Ngram Viewer's FAQ:

"I'm writing a paper based on your results. How can I cite your work?
If you're going to use this data for an academic publication, please cite the original paper:

Jean-Baptiste Michel*, Yuan Kui Shen, Aviva Presser Aiden, Adrian Veres, Matthew K. Gray, William Brockman, The Google Books Team, Joseph P. Pickett, Dale Hoiberg, Dan Clancy, Peter Norvig, Jon Orwant, Steven Pinker, Martin A. Nowak, and Erez Lieberman Aiden*. Quantitative Analysis of Culture Using Millions of Digitized Books. Science (Published online ahead of print: 12/16/2010)
We also have a paper on our part-of-speech tagging:
Yuri Lin, Jean-Baptiste Michel, Erez Lieberman Aiden, Jon Orwant, William Brockman, Slav Petrov. Syntactic Annotations for the Google Books Ngram Corpus. Proceedings of the 50th Annual Meeting of the Association for Computational Linguistics Volume 2: Demo Papers (ACL '12) (2012) 

I'd like to publish an Ngram graph in my book/magazine/blog/presentation. What are your licensing terms?

Ngram Viewer graphs and data may be freely used for any purpose, although acknowledgement of Google Books Ngram Viewer as the source, and inclusion of a link to http://books.google.com/ngrams, would be appreciated."

end of quote
***********************************************************

Copyleft 2014-15. All wrongs reserved for the developer :)                    

확장 프로그램 기본 정보

이름 ngram viewer ngram viewer
ID fkgnekciniccjnacbafpgepgdngeapbb
공식 URL https://chromewebstore.google.com/detail/ngram-viewer/fkgnekciniccjnacbafpgepgdngeapbb
설명 The changes in popularity of the words over the last centuries
파일 크기 103 KB
설치 횟수 2,199
현재 버전 1.1
최근 업데이트 2015-03-28
출시 날짜 2015-03-27
평점 4.33/5 총 6 개의 평점
개발자 partaab.com
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ngram viewer",
    "description": "The changes in popularity of the words over the last centuries",
    "version": "1.1",
    "icons": {
        "16": "pack\/icon.png",
        "48": "pack\/icon.png",
        "128": "pack\/icon.png"
    },
    "permissions": [
        "*:\/\/*.ajax.googleapis.com\/",
        "*:\/\/*.books.google.com\/"
    ],
    "browser_action": {
        "default_icon": "pack\/icon.png",
        "default_popup": "popup.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Alt+N",
                "mac": "Alt+N",
                "chromeos": "Alt+N",
                "linux": "Alt+N"
            }
        }
    }
}