Notion Prettier

Notion Prettier makes the code look prettier in Notion.

Notion Prettier क्या है?

Notion Prettier 7nbaek द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Notion Prettier makes the code look prettier in Notion."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Notion Prettier एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
}