Word Count on Webpage By Warp Vessel

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

Vad är Word Count on Webpage By Warp Vessel?

Word Count on Webpage By Warp Vessel är en Chrome-tillägg utvecklad av Warp Vessel Apps, och dess huvudfunktion är "A simple chrome extension that allows you to instantly see the word count on the current webpage.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Word Count on Webpage By Warp Vessel-förlängningens CRX-fil

Ladda ner Word Count on Webpage By Warp Vessel-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

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

Grundläggande Information om Tillägg

Namn Word Count on Webpage By Warp Vessel Word Count on Webpage By Warp Vessel
ID poojadbpgpkiokkenipihadhecgphkfh
Officiell webbadress https://chromewebstore.google.com/detail/word-count-on-webpage-by/poojadbpgpkiokkenipihadhecgphkfh
Beskrivning A simple chrome extension that allows you to instantly see the word count on the current webpage.
Filstorlek 6.48 KB
Antal Installationer 321
Aktuell Version 1.02
Senast Uppdaterad 2019-05-30
Publiceringsdatum 2019-05-24
Betyg 3.75/5 Totalt 4 Betyg
Utvecklare Warp Vessel Apps
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        ]
    }
}