Word Count on Webpage By Warp Vessel

A simple chrome extension that allows you to instantly see the word count on the current webpage.

Wat is Word Count on Webpage By Warp Vessel?

Word Count on Webpage By Warp Vessel is een Chrome-extensie ontwikkeld door Warp Vessel Apps, en de belangrijkste functie is "A simple chrome extension that allows you to instantly see the word count on the current webpage.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Word Count on Webpage By Warp Vessel

Download Word Count on Webpage By Warp Vessel-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        A simple chrome extension that allows you to instantly see the word count on the current webpage.                    

Basisinformatie over de Extensie

Naam Word Count on Webpage By Warp Vessel Word Count on Webpage By Warp Vessel
ID poojadbpgpkiokkenipihadhecgphkfh
Officiële URL https://chromewebstore.google.com/detail/word-count-on-webpage-by/poojadbpgpkiokkenipihadhecgphkfh
Beschrijving A simple chrome extension that allows you to instantly see the word count on the current webpage.
Bestandsgrootte 6.48 KB
Aantal Installaties 321
Huidige Versie 1.02
Laatst Bijgewerkt 2019-05-30
Publicatiedatum 2019-05-24
Beoordeling 3.75/5 Totaal 4 Beoordelingen
Ontwikkelaar Warp Vessel Apps
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word Count on Webpage By Warp Vessel",
    "version": "1.02",
    "manifest_version": 2,
    "permissions": [
        "tabs"
    ],
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Word Count By Warp Vessel",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}