SideNotion

Turn Notion into your online lecture sidekick.

SideNotion란 무엇입니까?

SideNotion은(는) rizhaow에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Turn Notion into your online lecture sidekick."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

SideNotion 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
}