Word Count Toolbar
Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords
Vad är Word Count Toolbar?
Word Count Toolbar är en Chrome-tillägg utvecklad av Johannes, och dess huvudfunktion är "Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords".
Tilläggsskärmbilder
Ladda ner Word Count Toolbar-förlängningens CRX-fil
Ladda ner Word Count Toolbar-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Word Count Toolbar |
ID | mbmhadmadlioegaemcblhbloheompkeb |
Officiell webbadress | https://chromewebstore.google.com/detail/word-count-toolbar/mbmhadmadlioegaemcblhbloheompkeb |
Beskrivning | Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords |
Filstorlek | 18.59 KB |
Antal Installationer | 202 |
Aktuell Version | 0.1 |
Senast Uppdaterad | 2021-09-14 |
Publiceringsdatum | 2021-09-13 |
Betyg | 5.00/5 Totalt 4 Betyg |
Utvecklare | Johannes |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } |