Word Count

Display the number of words and characters within highlight in contextMenu and bottom right

Vad är Word Count?

Word Count är en Chrome-tillägg utvecklad av Zeno, och dess huvudfunktion är "Display the number of words and characters within highlight in contextMenu and bottom right".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Word Count-förlängningens CRX-fil

Ladda ner Word Count-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

                        Display the number of words and characters within highlight in context menu and bottom right

On highlight, show the word count and the number of characters immediately.

Settings to change to 
- dark count box 
- hide count box

Chrome extension word counter to easily count words & characters                    

Grundläggande Information om Tillägg

Namn Word Count Word Count
ID inaklojbeljbfmkkpjfmjjgehckpeohf
Officiell webbadress https://chromewebstore.google.com/detail/word-count/inaklojbeljbfmkkpjfmjjgehckpeohf
Beskrivning Display the number of words and characters within highlight in contextMenu and bottom right
Filstorlek 15.59 KB
Antal Installationer 53
Aktuell Version 0.2
Senast Uppdaterad 2022-06-09
Publiceringsdatum 2022-06-09
Utvecklare Zeno
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.buymeacoffee.com/WhyNotBeFrg
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Word Count",
    "version": "0.2",
    "description": "Display the number of words and characters within highlight in contextMenu and bottom right",
    "icons": {
        "16": "icons\/logo.png",
        "48": "icons\/logo.png",
        "128": "icons\/logo.png"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "scripting",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "action": {
        "default_title": "test",
        "default_popup": "key.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "test.js"
            ]
        }
    ]
}