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」です。
拡張機能のスクリーンショット
Word Cloud Generator拡張機能のCRXファイルをダウンロード
Word Cloud Generator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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!
拡張機能の基本情報
名前 | |
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" } } } |