Notion Tweaks
For Notion. Development of this extension is in stop.
Что такое Notion Tweaks?
Notion Tweaks - это расширение Chrome, разработанное eetann, и его основная функция - "For Notion. Development of this extension is in stop.".
Снимки экрана расширения
Скачать файл CRX расширения Notion Tweaks
Скачайте файлы расширений Notion Tweaks в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | Notion Tweaks |
ID | fodemmhibeapiocbkojhfpbbiipojcof |
Официальный URL | https://chromewebstore.google.com/detail/notion-tweaks/fodemmhibeapiocbkojhfpbbiipojcof |
Описание | For Notion. Development of this extension is in stop. |
Размер файла | 129 KB |
Количество установок | 304 |
Текущая Версия | 1.0.1 |
Последнее Обновление | 2022-09-22 |
Дата публикации | 2021-11-07 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | eetann |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/eetann/notion-tweaks#readme |
Поддерживаемые языки | 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" } } |