Word Cloud Generator

Generate word cloud visualizations of web pages, text files, or other arbitary text inputs

Word Cloud Generator란 무엇입니까?

Word Cloud Generator은(는) practechal에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Generate word cloud visualizations of web pages, text files, or other arbitary text inputs"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Word Cloud Generator 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This addon allows you to select sections of a web page and generate a word cloud visualization of the words (or phrases) in those sections. Useful for a quick breakdown/summary of what the page is talking about, or at least the buzzwords. Also, it's just a fun visualization to play with. I mean, who doesn't love infographics?! ᕕ( ᐛ )ᕗ

Feedback is welcome. What do you like? What would you change? Did you find interesting pages to generate word clouds for? Please  leave a review, file an issue or submit a pull request (https://github.com/emanresusername/word-cloud-generator)

Major shout out to d3-cloud (https://github.com/jasondavies/d3-cloud) which i'm using under the hood!

Hope you  like it!                    

확장 프로그램 기본 정보

이름 Word Cloud Generator Word Cloud Generator
ID demclmhdcbofendohdngkfokmbcgickb
공식 URL https://chrome.google.com/webstore/detail/word-cloud-generator/demclmhdcbofendohdngkfokmbcgickb
설명 Generate word cloud visualizations of web pages, text files, or other arbitary text inputs
파일 크기 253 KB
설치 횟수 10,000
현재 버전 0.3.0
최근 업데이트 2017-06-21
출시 날짜 2017-06-21
평점 2.57/5 총 7 개의 평점
개발자 practechal
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/emanresusername/word-cloud-generator
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Cloud Generator",
    "version": "0.3.0",
    "default_locale": "en",
    "description": "Generate word cloud visualizations of web pages, text files, or other arbitary text inputs",
    "icons": {
        "32": "icons\/32\/wordcloud.png",
        "48": "icons\/48\/wordcloud.png",
        "64": "icons\/64\/wordcloud.png",
        "96": "icons\/96\/wordcloud.png"
    },
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "background": {
        "scripts": [
            "dependencies.js",
            "main.js"
        ]
    },
    "browser_action": {
        "default_title": "Word Cloud Generator",
        "default_icon": {
            "32": "icons\/32\/wordcloud.png",
            "48": "icons\/48\/wordcloud.png",
            "64": "icons\/64\/wordcloud.png",
            "96": "icons\/96\/wordcloud.png"
        }
    }
}