Notion Sidebar Expander
Expands Notion Sidebar items to reveal the current page
Что такое Notion Sidebar Expander?
Notion Sidebar Expander - это расширение Chrome, разработанное George Gillams, и его основная функция - "Expands Notion Sidebar items to reveal the current page".
Снимки экрана расширения
Скачать файл CRX расширения Notion Sidebar Expander
Скачайте файлы расширений Notion Sidebar Expander в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Automatically expands Notion sidebar to reveal the current page
Основная информация о расширении
Название | Notion Sidebar Expander |
ID | bcncpphhpgindiaibcnbhihjkchnanad |
Официальный URL | https://chromewebstore.google.com/detail/notion-sidebar-expander/bcncpphhpgindiaibcnbhihjkchnanad |
Описание | Expands Notion Sidebar items to reveal the current page |
Размер файла | 9.72 KB |
Количество установок | 290 |
Текущая Версия | 1.1.2 |
Последнее Обновление | 2023-06-06 |
Дата публикации | 2022-02-15 |
Рейтинг | 3.20/5 Всего 5 оценок |
Разработчик | George Gillams |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Notion Sidebar Expander", "description": "Expands Notion Sidebar items to reveal the current page", "version": "1.1.2", "content_scripts": [ { "matches": [ "https:\/\/*.notion.so\/*" ], "js": [ "content.js" ] } ], "permissions": [], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_specific_settings": { "gecko": { "id": "[email protected]" } } } |