Wattpad Word Count
Add the word count to the story/part page
Was ist Wattpad Word Count?
Wattpad Word Count ist eine Chrome-Erweiterung, die von dantgr entwickelt wurde, und ihr Hauptmerkmal ist "Add the word count to the story/part page".
Erweiterungsscreenshots
Wattpad Word Count-Erweiterungs-CRX-Datei herunterladen
Laden Sie Wattpad Word Count-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | cjbnladjjgobabkiioolngpoihdbncle |
| Offizielle URL | https://chromewebstore.google.com/detail/wattpad-word-count/cjbnladjjgobabkiioolngpoihdbncle |
| Beschreibung | Add the word count to the story/part page |
| Dateigröße | 1.04 MB |
| Installationsanzahl | 774 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2022-12-15 |
| Veröffentlichungsdatum | 2022-12-15 |
| Bewertung | 2.33/5 Insgesamt 3 Bewertungen |
| Entwickler | dantgr |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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\/*"
]
}
]
} | |