Word Counter
Counting the amount of a given word in the current page
什麼是Word Counter?
Word Counter是由chatjonsmedia開發的Chrome擴展程式,該擴展的主要功能是“Counting the amount of a given word in the current page”。
擴展截圖
下載Word Counter擴展crx文件
下載Word Counter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Word Counter is a fun extension that will let the user count how many words appear in a page.
擴展基本資訊
名稱 | |
ID | ledamfbeelplcjfjclabbckmglgkmhdf |
官方網址 | https://chrome.google.com/webstore/detail/word-counter/ledamfbeelplcjfjclabbckmglgkmhdf |
簡介 | Counting the amount of a given word in the current page |
檔案大小 | 14.55 KB |
安裝次數 | 2,959 |
目前版本 | 1 |
更新時間 | 2022-12-05 |
上架時間 | 2022-12-05 |
開發者 | chatjonsmedia |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://home.ujhimselvepost.info/ |
說明頁面URL | https://home.ujhimselvepost.info/contact.html |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Counting the amount of a given word in the current page", "icons": { "128": "logo.png" }, "action": { "default_icon": "logo.png", "default_title": "Word Counter", "default_popup": "popup.html" }, "manifest_version": 3, "name": "Word Counter", "version": "1", "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content.js" ] } ] } |