Notion文字数カウント
This is a Chrome extension that counts the number of characters in a Notion page.
Что такое Notion文字数カウント?
Notion文字数カウント - это расширение Chrome, разработанное https://notion-fan.com, и его основная функция - "This is a Chrome extension that counts the number of characters in a Notion page.".
Снимки экрана расширения
Скачать файл CRX расширения Notion文字数カウント
Скачайте файлы расширений 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. Основная информация о расширении
| Название | |
| 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 |
| Электронная почта | [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"
]
} | |