Word Counter
Counting the amount of a given word in the current page
Wat is Word Counter?
Word Counter is een Chrome-extensie ontwikkeld door chatjonsmedia, en de belangrijkste functie is "Counting the amount of a given word in the current page".
Extensie Screenshots
Download het CRX-bestand van de extensie Word Counter
Download Word Counter-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
Word Counter is a fun extension that will let the user count how many words appear in a page.
Basisinformatie over de Extensie
Naam | |
ID | ledamfbeelplcjfjclabbckmglgkmhdf |
Officiële URL | https://chrome.google.com/webstore/detail/word-counter/ledamfbeelplcjfjclabbckmglgkmhdf |
Beschrijving | Counting the amount of a given word in the current page |
Bestandsgrootte | 14.55 KB |
Aantal Installaties | 2,959 |
Huidige Versie | 1 |
Laatst Bijgewerkt | 2022-12-05 |
Publicatiedatum | 2022-12-05 |
Ontwikkelaar | chatjonsmedia |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://home.ujhimselvepost.info/ |
Help Pagina-URL | https://home.ujhimselvepost.info/contact.html |
Ondersteunde Talen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Counting the amount of a given word in the current page", "icons": { "128": "logo.png" }, "action": { "default_icon": "logo.png", "default_title": "Word Counter", "default_popup": "popup.html" }, "manifest_version": 3, "name": "Word Counter", "version": "1", "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content.js" ] } ] } |