Wattpad Word Count
Add the word count to the story/part page
什麼是Wattpad Word Count?
Wattpad Word Count是由dantgr開發的Chrome擴展程式,該擴展的主要功能是“Add the word count to the story/part page”。
擴展截圖
下載Wattpad Word Count擴展crx文件
下載Wattpad Word Count擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Wattpad Word Count |
ID | cjbnladjjgobabkiioolngpoihdbncle |
官方網址 | https://chromewebstore.google.com/detail/wattpad-word-count/cjbnladjjgobabkiioolngpoihdbncle |
簡介 | Add the word count to the story/part page |
檔案大小 | 1.04 MB |
安裝次數 | 774 |
目前版本 | 1.0 |
更新時間 | 2022-12-15 |
上架時間 | 2022-12-15 |
評分 | 2.33/5 共 3 次評分 |
開發者 | dantgr |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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\/*" ] } ] } |