Count Words
Count the amount of words in your page!
Count Wordsとは何ですか?
Count Wordsはandinomedia.coによって開発されたChromeの拡張機能で、その主な機能は「Count the amount of words in your page!」です。
拡張機能のスクリーンショット
Count Words拡張機能のCRXファイルをダウンロード
Count Words拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Count Words is a fun extension that will count how many times a word appears in the user's page.
拡張機能の基本情報
名前 | |
ID | bcpckhlbhiofhkbjmjnfdgaalmgbgpoa |
公式URL | https://chrome.google.com/webstore/detail/count-words/bcpckhlbhiofhkbjmjnfdgaalmgbgpoa |
説明 | Count the amount of words in your page! |
ファイルサイズ | 14.58 KB |
インストール数 | 1,649 |
現在のバージョン | 1 |
最終更新日 | 2022-12-08 |
公開日 | 2022-12-08 |
開発者 | andinomedia.co |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://home.sdgebralefuki.info/ |
ヘルプページのURL | https://home.sdgebralefuki.info/contact.html |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Count the amount of words in your page!", "icons": { "128": "logo.png" }, "action": { "default_icon": "logo.png", "default_title": "Count Words", "default_popup": "popup.html" }, "manifest_version": 3, "name": "Count Words", "version": "1", "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content.js" ] } ] } |