Wattpad Word Count
Add the word count to the story/part page
Cos'è Wattpad Word Count?
Wattpad Word Count è un'estensione di Chrome sviluppata da dantgr, e la sua funzione principale è "Add the word count to the story/part page".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Wattpad Word Count
Scarica i file di estensione Wattpad Word Count in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
With this extension, you can view the word count of any story and each of its parts. ⚠️ If the word count is not displayed after a few seconds, simply refresh the page.
Informazioni di Base sull'Estensione
Nome | Wattpad Word Count |
ID | cjbnladjjgobabkiioolngpoihdbncle |
URL Ufficiale | https://chromewebstore.google.com/detail/wattpad-word-count/cjbnladjjgobabkiioolngpoihdbncle |
Descrizione | Add the word count to the story/part page |
Dimensione del File | 1.04 MB |
Conteggio Installazioni | 774 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2022-12-15 |
Data di Pubblicazione | 2022-12-15 |
Valutazione | 2.33/5 Totale 3 Valutazioni |
Sviluppatore | dantgr |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Wattpad Word Count", "version": "1.0", "description": "Add the word count to the story\/part page", "permissions": [ "webNavigation", "tabs" ], "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "background": { "service_worker": "scripts\/background.js" }, "content_scripts": [ { "js": [ "scripts\/content.js" ], "matches": [ "https:\/\/www.wattpad.com\/story\/*", "https:\/\/www.wattpad.com\/*" ] } ] } |