Notion Tweaks
For Notion. Development of this extension is in stop.
O que é Notion Tweaks?
Notion Tweaks é uma extensão do Chrome desenvolvida por eetann, e sua principal característica é "For Notion. Development of this extension is in stop.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Notion Tweaks
Baixe arquivos de extensão Notion Tweaks no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Development of this extension has been discontinued and is deprecated. Chrome Extension to tweak Notion. Features ・Open or Create Today's Page of a specific database ・Create Page of a specific database quickly ・Enter the timestamp(HH:mm) quickly ・Close Slash command menu and Emoji menu ・Narrow the page margins when page width is less than 850px ・Narrow the margin at the bottom of Code Block ・Always show the language of Code Block 🏠 https://github.com/eetann/notion-tweaks#readme
Informações Básicas da Extensão
Nome | Notion Tweaks |
ID | fodemmhibeapiocbkojhfpbbiipojcof |
URL Oficial | https://chromewebstore.google.com/detail/notion-tweaks/fodemmhibeapiocbkojhfpbbiipojcof |
Descrição | For Notion. Development of this extension is in stop. |
Tamanho do Arquivo | 129 KB |
Contagem de Instalações | 304 |
Versão Atual | 1.0.1 |
Última Atualização | 2022-09-22 |
Data de Publicação | 2021-11-07 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | eetann |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/eetann/notion-tweaks#readme |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Notion Tweaks", "version": "1.0.1", "description": "For Notion. Development of this extension is in stop.", "author": "eetann", "icons": { "16": "imgs\/icon16.png", "48": "imgs\/icon48.png", "128": "imgs\/icon128.png" }, "host_permissions": [ "https:\/\/script.google.com\/", "https:\/\/script.googleusercontent.com\/", "https:\/\/api.notion.com\/" ], "permissions": [ "storage" ], "commands": { "today": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" }, "global": true, "description": "Open today page." } }, "options_page": "options.html", "content_scripts": [ { "matches": [ "https:\/\/www.notion.so\/*" ], "css": [ "content.css" ], "js": [ "content.js", "chunk.js" ] } ], "background": { "service_worker": "background.js" } } |