Wordcounter
Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.
Co to jest Wordcounter?
Wordcounter to rozszerzenie Chrome opracowane przez Sahil Lavingia, a jego główną funkcją jest „Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Wordcounter
Pobierz pliki rozszerzeń Wordcounter 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
Wordcounter shows a real-time word count as you type in any Google Docs document. You can toggle it off and on by clicking on the icon in the top right corner of your browser. It also adds milestone markers every 500 words. Motivating!
Podstawowe informacje o rozszerzeniu
Nazwa | Wordcounter |
ID | lhggjeapfnagbjlklclkmlihhoandlib |
Oficjalny URL | https://chromewebstore.google.com/detail/wordcounter/lhggjeapfnagbjlklclkmlihhoandlib |
Opis | Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words. |
Rozmiar pliku | 45.97 KB |
Liczba instalacji | 3,718 |
Aktualna Wersja | 1.3 |
Ostatnia Aktualizacja | 2018-08-02 |
Data Publikacji | 2018-08-01 |
Ocena | 2.62/5 Łącznie 37 Oceny |
Deweloper | Sahil Lavingia |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Wordcounter", "version": "1.3", "description": "Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.", "permissions": [ "activeTab", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/*" ], "css": [ "style.css" ], "js": [ "jquery-3.3.1.min.js", "content.js" ] } ], "browser_action": { "name": "Click to toggle Wordcounter on or off" }, "icons": { "128": "icon.png" }, "manifest_version": 2 } |