SideNotion

Turn Notion into your online lecture sidekick.

Что такое SideNotion?

SideNotion - это расширение Chrome, разработанное rizhaow, и его основная функция - "Turn Notion into your online lecture sidekick.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения SideNotion

Скачайте файлы расширений SideNotion в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Record lecture screenshots in one command 📷
Speed up, pause, capture videos, without leaving Notion or your keyboard ⌨️
Works for any website 🌐
Saved to your Notion document automatically 📝

Number 1 Product of the Day on ProductHunt
https://www.producthunt.com/posts/sidenotion                    

Основная информация о расширении

Название SideNotion SideNotion
ID ihjmeedcmbeapmaagcjpngemnckiooih
Официальный URL https://chromewebstore.google.com/detail/sidenotion/ihjmeedcmbeapmaagcjpngemnckiooih
Описание Turn Notion into your online lecture sidekick.
Размер файла 982 KB
Количество установок 1,170
Текущая Версия 1.4.1
Последнее Обновление 2022-08-31
Дата публикации 2021-12-07
Рейтинг 4.67/5 Всего 6 оценок
Разработчик rizhaow
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://sidenotion.30apps.me
URL страницы помощи https://docs.google.com/forms/d/e/1FAIpQLSdq6KtGZKvPLN2KBaxyw3D37PidA9EBFAfYUtaR7Vq8mGuZdQ/viewform?usp=sf_link
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Turn Notion into your online lecture sidekick.",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "constants.js",
                "utils.js",
                "packages\/interact.js",
                "recorder.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "http:\/\/www.notion.so\/*",
                "https:\/\/www.notion.so\/*"
            ],
            "all_frames": true
        },
        {
            "js": [
                "constants.js",
                "utils.js",
                "packages\/intro.js",
                "packages\/micromodal.js",
                "packages\/mousetrap.js",
                "packages\/mousetrap-record.js",
                "packages\/mousetrap-pause.js",
                "content.js"
            ],
            "css": [
                "packages\/intro.css"
            ],
            "matches": [
                "http:\/\/www.notion.so\/*",
                "https:\/\/www.notion.so\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "192": "images\/icon192.png"
        },
        "default_title": "SideNotion",
        "default_popup": "popup\/popup.html"
    },
    "name": "SideNotion",
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "clipboardRead"
    ],
    "host_permissions": [
        ""
    ],
    "short_name": "SideNotion",
    "version": "1.4.1"
}