Tally Word Counter

Easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count.

Vad är Tally Word Counter?

Tally Word Counter är en Chrome-tillägg utvecklad av https://tallywordcounter.online, och dess huvudfunktion är "Easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Tally Word Counter-förlängningens CRX-fil

Ladda ner Tally Word Counter-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

                        Your favorite character counter! Tally is a Chrome extension to easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count to see the number of characters, words, sentences, paragraphs, spaces, letters, digits, and special characters in your text.

Visit tallywordcounter.online for the full site.                    

Grundläggande Information om Tillägg

Namn Tally Word Counter Tally Word Counter
ID eggkmbghbmjmbdjloifaklghfiecjbnk
Officiell webbadress https://chromewebstore.google.com/detail/tally-word-counter/eggkmbghbmjmbdjloifaklghfiecjbnk
Beskrivning Easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count.
Filstorlek 13.05 KB
Antal Installationer 331
Aktuell Version 1.1
Senast Uppdaterad 2019-06-06
Publiceringsdatum 2019-05-31
Betyg 2.67/5 Totalt 6 Betyg
Utvecklare https://tallywordcounter.online
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tally Word Counter",
    "short_name": "Tally",
    "description": "Easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count.",
    "version": "1.1",
    "icons": {
        "128": "128.png",
        "48": "48.png",
        "32": "32.png",
        "16": "16.png"
    },
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "manifest_version": 2
}