Word Counter
Counting the amount of a given word in the current page
Was ist Word Counter?
Word Counter ist eine Chrome-Erweiterung, die von chatjonsmedia entwickelt wurde, und ihr Hauptmerkmal ist "Counting the amount of a given word in the current page".
Erweiterungsscreenshots
Word Counter-Erweiterungs-CRX-Datei herunterladen
Laden Sie Word Counter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Word Counter is a fun extension that will let the user count how many words appear in a page.
Grundlegende Informationen zur Erweiterung
Name | |
ID | ledamfbeelplcjfjclabbckmglgkmhdf |
Offizielle URL | https://chrome.google.com/webstore/detail/word-counter/ledamfbeelplcjfjclabbckmglgkmhdf |
Beschreibung | Counting the amount of a given word in the current page |
Dateigröße | 14.55 KB |
Installationsanzahl | 2,959 |
Aktuelle Version | 1 |
Letztes Update | 2022-12-05 |
Veröffentlichungsdatum | 2022-12-05 |
Entwickler | chatjonsmedia |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://home.ujhimselvepost.info/ |
Hilfeseite URL | https://home.ujhimselvepost.info/contact.html |
Unterstützte Sprachen | 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" ] } ] } |