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 |
官方網址 | 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" } } } |