Notion文字数カウント
This is a Chrome extension that counts the number of characters in a Notion page.
Notion文字数カウントとは何ですか?
Notion文字数カウントはhttps://notion-fan.comによって開発されたChromeの拡張機能で、その主な機能は「This is a Chrome extension that counts the number of characters in a Notion page.」です。
拡張機能のスクリーンショット
Notion文字数カウント拡張機能のCRXファイルをダウンロード
Notion文字数カウント拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Notion ページ内の文字数をカウントすることができます。 スペース有り、スペース無しでカウントできます。 またコードブロックは、全体の文字数とは別にカウントすることもできます。 You can count the number of characters in a Notion page, with or without spaces. Additionally, you can choose to count code blocks separately from the rest of the page.
拡張機能の基本情報
名前 | Notion文字数カウント |
ID | cgdlnhohdpngigmkhfnifonmaedkhgfn |
公式URL | https://chromewebstore.google.com/detail/notion%E6%96%87%E5%AD%97%E6%95%B0%E3%82%AB%E3%82%A6%E3%83%B3%E3%83%88/cgdlnhohdpngigmkhfnifonmaedkhgfn |
説明 | This is a Chrome extension that counts the number of characters in a Notion page. |
ファイルサイズ | 21.42 KB |
インストール数 | 1,313 |
現在のバージョン | 0.1.0 |
最終更新日 | 2023-05-07 |
公開日 | 2023-05-07 |
評価 | 4.00/5 合計 3 レビュー |
開発者 | https://notion-fan.com |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://notion-fan.com/ |
対応言語 | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Notion\u6587\u5b57\u6570\u30ab\u30a6\u30f3\u30c8", "description": "This is a Chrome extension that counts the number of characters in a Notion page.", "version": "0.1.0", "manifest_version": 3, "action": { "default_popup": "popup.html" }, "icons": { "128": "icon128.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.notion.so\/*" ], "js": [ "content-script.js" ], "run_at": "document_end" } ], "commands": { "_execute_action": { "suggested_key": { "windows": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" }, "description": "Counting Characters" } }, "permissions": [ "storage" ] } |