Word Cloud Generator
Generate word cloud visualizations of web pages, text files, or other arbitary text inputs
Qu'est-ce que Word Cloud Generator ?
Word Cloud Generator est une extension Chrome développée par practechal, et sa fonction principale est "Generate word cloud visualizations of web pages, text files, or other arbitary text inputs".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Word Cloud Generator
Téléchargez les fichiers d'extension Word Cloud Generator au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | |
ID | demclmhdcbofendohdngkfokmbcgickb |
URL Officiel | https://chrome.google.com/webstore/detail/word-cloud-generator/demclmhdcbofendohdngkfokmbcgickb |
Description | Generate word cloud visualizations of web pages, text files, or other arbitary text inputs |
Taille du Fichier | 253 KB |
Nombre d'Installations | 10,000 |
Version Actuelle | 0.3.0 |
Dernière Mise à Jour | 2017-06-21 |
Date de Publication | 2017-06-21 |
Évaluation | 2.57/5 Total 7 Évaluations |
Développeur | practechal |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/emanresusername/word-cloud-generator |
Langues Prises en Charge | 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" } } } |