Count Words
Count the amount of words in your page!
Apa itu Count Words?
Count Words adalah ekstensi Chrome yang dikembangkan oleh andinomedia.co, dan fitur utamanya adalah "Count the amount of words in your page!".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Count Words
Unduh file ekstensi Count Words dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Count Words is a fun extension that will count how many times a word appears in the user's page.
Informasi Dasar Ekstensi
Nama | |
ID | bcpckhlbhiofhkbjmjnfdgaalmgbgpoa |
URL Resmi | https://chrome.google.com/webstore/detail/count-words/bcpckhlbhiofhkbjmjnfdgaalmgbgpoa |
Deskripsi | Count the amount of words in your page! |
Ukuran File | 14.58 KB |
Jumlah Instalasi | 1,649 |
Versi Saat Ini | 1 |
Terakhir Diperbarui | 2022-12-08 |
Tanggal Publikasi | 2022-12-08 |
Pengembang | andinomedia.co |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://home.sdgebralefuki.info/ |
URL Halaman Bantuan | https://home.sdgebralefuki.info/contact.html |
Bahasa yang Didukung | 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" ] } ] } |