Count Words
Count the amount of words in your page!
Hvad er Count Words?
Count Words er en Chrome-udvidelse udviklet af andinomedia.co, og dens hovedfunktion er "Count the amount of words in your page!".
Udvidelsesskærmbilleder
Download Count Words-udvidelses-CRX-fil
Download Count Words-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Count Words is a fun extension that will count how many times a word appears in the user's page.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | bcpckhlbhiofhkbjmjnfdgaalmgbgpoa |
Officiel URL | https://chrome.google.com/webstore/detail/count-words/bcpckhlbhiofhkbjmjnfdgaalmgbgpoa |
Beskrivelse | Count the amount of words in your page! |
Filstørrelse | 14.58 KB |
Antal Installationer | 1,649 |
Nuværende Version | 1 |
Senest Opdateret | 2022-12-08 |
Udgivelsesdato | 2022-12-08 |
Udvikler | andinomedia.co |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://home.sdgebralefuki.info/ |
Hjælpeside-URL | https://home.sdgebralefuki.info/contact.html |
Understøttede Sprog | 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" ] } ] } |