Count Words
Count the amount of words in your page!
Vad är Count Words?
Count Words är en Chrome-tillägg utvecklad av andinomedia.co, och dess huvudfunktion är "Count the amount of words in your page!".
Tilläggsskärmbilder
Ladda ner Count Words-förlängningens CRX-fil
Ladda ner Count Words-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
Count Words is a fun extension that will count how many times a word appears in the user's page.
Grundläggande Information om Tillägg
Namn | |
ID | bcpckhlbhiofhkbjmjnfdgaalmgbgpoa |
Officiell webbadress | https://chrome.google.com/webstore/detail/count-words/bcpckhlbhiofhkbjmjnfdgaalmgbgpoa |
Beskrivning | Count the amount of words in your page! |
Filstorlek | 14.58 KB |
Antal Installationer | 1,649 |
Aktuell Version | 1 |
Senast Uppdaterad | 2022-12-08 |
Publiceringsdatum | 2022-12-08 |
Utvecklare | andinomedia.co |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://home.sdgebralefuki.info/ |
Hjälpsida URL | https://home.sdgebralefuki.info/contact.html |
Stödda Språk | 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" ] } ] } |