Word Count Toolbar
Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords
Was ist Word Count Toolbar?
Word Count Toolbar ist eine Chrome-Erweiterung, die von Johannes entwickelt wurde, und ihr Hauptmerkmal ist "Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords".
Erweiterungsscreenshots
Word Count Toolbar-Erweiterungs-CRX-Datei herunterladen
Laden Sie Word Count Toolbar-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Word Count Toolbar Get text stats from any website everywhere! Word Count Toolbar is an extension for displaying text analytics on google searches and on any website you want. Simply type in your google query and the extension will inject display the text stats for every page. Use the right-click menu for displaying stats, on your current selected text, on any page. - Word count - Character count with/without spaces - Sentence count - Average Sentence length - Paragraphs - Headers - Images - Keywords
Grundlegende Informationen zur Erweiterung
Name | Word Count Toolbar |
ID | mbmhadmadlioegaemcblhbloheompkeb |
Offizielle URL | https://chromewebstore.google.com/detail/word-count-toolbar/mbmhadmadlioegaemcblhbloheompkeb |
Beschreibung | Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords |
Dateigröße | 18.59 KB |
Installationsanzahl | 202 |
Aktuelle Version | 0.1 |
Letztes Update | 2021-09-14 |
Veröffentlichungsdatum | 2021-09-13 |
Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
Entwickler | Johannes |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Word Count Toolbar", "description": "Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords", "version": "0.1", "author": "Johannes", "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "css": [ "styles.css" ], "js": [ "content.js" ] } ], "browser_action": { "default_title": "Word Count Toolbar" }, "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "permissions": [ "https:\/\/www.google.com\/*", "contextMenus" ] } |