Notion文字数カウント
This is a Chrome extension that counts the number of characters in a Notion page.
Qu'est-ce que Notion文字数カウント ?
Notion文字数カウント est une extension Chrome développée par https://notion-fan.com, et sa fonction principale est "This is a Chrome extension that counts the number of characters in a Notion page.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Notion文字数カウント
Téléchargez les fichiers d'extension Notion文字数カウント au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Notion文字数カウント |
ID | cgdlnhohdpngigmkhfnifonmaedkhgfn |
URL Officiel | 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 |
Description | This is a Chrome extension that counts the number of characters in a Notion page. |
Taille du Fichier | 21.42 KB |
Nombre d'Installations | 1,313 |
Version Actuelle | 0.1.0 |
Dernière Mise à Jour | 2023-05-07 |
Date de Publication | 2023-05-07 |
Évaluation | 4.00/5 Total 3 Évaluations |
Développeur | https://notion-fan.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://notion-fan.com/ |
Langues Prises en Charge | 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" ] } |