Word Counter
Counting the amount of a given word in the current page
Vad är Word Counter?
Word Counter är en Chrome-tillägg utvecklad av chatjonsmedia, och dess huvudfunktion är "Counting the amount of a given word in the current page".
Tilläggsskärmbilder
Ladda ner Word Counter-förlängningens CRX-fil
Ladda ner Word Counter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Word Counter is a fun extension that will let the user count how many words appear in a page.
Grundläggande Information om Tillägg
Namn | |
ID | ledamfbeelplcjfjclabbckmglgkmhdf |
Officiell webbadress | https://chrome.google.com/webstore/detail/word-counter/ledamfbeelplcjfjclabbckmglgkmhdf |
Beskrivning | Counting the amount of a given word in the current page |
Filstorlek | 14.55 KB |
Antal Installationer | 2,959 |
Aktuell Version | 1 |
Senast Uppdaterad | 2022-12-05 |
Publiceringsdatum | 2022-12-05 |
Utvecklare | chatjonsmedia |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://home.ujhimselvepost.info/ |
Hjälpsida URL | https://home.ujhimselvepost.info/contact.html |
Stödda Språk | 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" ] } ] } |