Word Counter
Counting the amount of a given word in the current page
Co to jest Word Counter?
Word Counter to rozszerzenie Chrome opracowane przez chatjonsmedia, a jego główną funkcją jest „Counting the amount of a given word in the current page”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Word Counter
Pobierz pliki rozszerzeń Word Counter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Word Counter is a fun extension that will let the user count how many words appear in a page.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | ledamfbeelplcjfjclabbckmglgkmhdf |
Oficjalny URL | https://chrome.google.com/webstore/detail/word-counter/ledamfbeelplcjfjclabbckmglgkmhdf |
Opis | Counting the amount of a given word in the current page |
Rozmiar pliku | 14.55 KB |
Liczba instalacji | 2,959 |
Aktualna Wersja | 1 |
Ostatnia Aktualizacja | 2022-12-05 |
Data Publikacji | 2022-12-05 |
Deweloper | chatjonsmedia |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://home.ujhimselvepost.info/ |
Adres URL Strony Pomocy | https://home.ujhimselvepost.info/contact.html |
Obsługiwane Języki | 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" ] } ] } |