Notion Prettier

Notion Prettier makes the code look prettier in Notion.

Notion Prettier란 무엇입니까?

Notion Prettier은(는) 7nbaek에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Notion Prettier makes the code look prettier in Notion."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Feature 1 - code prettier
1. Select the code you want to organize in the Notion.
2. Press Ctrl + S ( command + S on Mac).
# Now you can use prettier,  if you select code on any website and right-click 

Feature 2 - Notion shortcut
1. Press Alt + Shift(option + shift on MAC) to toggle the note shortcut window.
2. You can close the note shortcut window using Alt + Shift(option +shift on MAC) , ESC, and X buttons.


기능 1 -  code prettier
1. 노션에서 정리할 코드를 선택하세요.
2. Ctrl + S(맥에서는 command + S) 를 누르세요.
# 이제 다른 웹사이트에서도 코드를 선택하고 오른쪽 클릭을 누르면 프리티어를 사용할 수 있어요!

기능 2 - Notion shortcut
1. Alt + Shift(맥에서는 option +shift)를 누르면 노션 단축키 창이 토글됩니다.
2. Alt + Shift(맥에서는 option +shift), ESC, X버튼을 이용하여 노션 단축키 창을 닫을 수 있습니다.                    

확장 프로그램 기본 정보

이름 Notion Prettier Notion Prettier
ID pcoijhnjkibiglbcgjcamilcdlfklbhn
공식 URL https://chromewebstore.google.com/detail/notion-prettier/pcoijhnjkibiglbcgjcamilcdlfklbhn
설명 Notion Prettier makes the code look prettier in Notion.
파일 크기 1.3 MB
설치 횟수 146
현재 버전 0.0.15
최근 업데이트 2024-02-10
출시 날짜 2022-12-22
개발자 7nbaek
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/codevilot/Notion-Prettier
지원되는 언어 ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Notion Prettier",
    "version": "0.0.15",
    "description": "Notion Prettier makes the code look prettier in Notion.",
    "author": "Namheon Baek",
    "icons": {
        "128": "icon128.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "service_worker": "background.js",
        "persistent": true
    },
    "content_scripts": [
        {
            "js": [
                "main.js"
            ],
            "css": [
                "style.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "type": "module"
}