Count Words
Count the amount of words in your page!
Was ist Count Words?
Count Words ist eine Chrome-Erweiterung, die von andinomedia.co entwickelt wurde, und ihr Hauptmerkmal ist "Count the amount of words in your page!".
Erweiterungsscreenshots
Count Words-Erweiterungs-CRX-Datei herunterladen
Laden Sie Count Words-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
Count Words is a fun extension that will count how many times a word appears in the user's page.
Grundlegende Informationen zur Erweiterung
Name | |
ID | bcpckhlbhiofhkbjmjnfdgaalmgbgpoa |
Offizielle URL | https://chrome.google.com/webstore/detail/count-words/bcpckhlbhiofhkbjmjnfdgaalmgbgpoa |
Beschreibung | Count the amount of words in your page! |
Dateigröße | 14.58 KB |
Installationsanzahl | 1,649 |
Aktuelle Version | 1 |
Letztes Update | 2022-12-08 |
Veröffentlichungsdatum | 2022-12-08 |
Entwickler | andinomedia.co |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://home.sdgebralefuki.info/ |
Hilfeseite URL | https://home.sdgebralefuki.info/contact.html |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Count the amount of words in your page!", "icons": { "128": "logo.png" }, "action": { "default_icon": "logo.png", "default_title": "Count Words", "default_popup": "popup.html" }, "manifest_version": 3, "name": "Count Words", "version": "1", "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content.js" ] } ] } |