Notion文字数カウント
This is a Chrome extension that counts the number of characters in a Notion page.
Cos'è Notion文字数カウント?
Notion文字数カウント è un'estensione di Chrome sviluppata da https://notion-fan.com, e la sua funzione principale è "This is a Chrome extension that counts the number of characters in a Notion page.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Notion文字数カウント
Scarica i file di estensione Notion文字数カウント in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | cgdlnhohdpngigmkhfnifonmaedkhgfn |
| URL Ufficiale | 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 |
| Descrizione | This is a Chrome extension that counts the number of characters in a Notion page. |
| Dimensione del File | 21.42 KB |
| Conteggio Installazioni | 1,313 |
| Versione Corrente | 0.1.0 |
| Ultimo Aggiornamento | 2023-05-07 |
| Data di Pubblicazione | 2023-05-07 |
| Valutazione | 4.00/5 Totale 3 Valutazioni |
| Sviluppatore | https://notion-fan.com |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://notion-fan.com/ |
| Lingue Supportate | 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"
]
} | |