Word Count Toolbar

Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords

Τι είναι το Word Count Toolbar;

Το Word Count Toolbar είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Johannes, και η κύρια λειτουργία του είναι "Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Word Count Toolbar

Λήψη αρχείων επέκτασης Word Count Toolbar σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Word Count Toolbar Word Count Toolbar
ID mbmhadmadlioegaemcblhbloheompkeb
Επίσημο URL https://chromewebstore.google.com/detail/word-count-toolbar/mbmhadmadlioegaemcblhbloheompkeb
Περιγραφή Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords
Μέγεθος Αρχείου 18.59 KB
Αριθμός Εγκαταστάσεων 202
Τρέχουσα Έκδοση 0.1
Τελευταία Ενημέρωση 2021-09-14
Ημερομηνία Δημοσίευσης 2021-09-13
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής Johannes
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
    ]
}