Notion Code Formatter

Format code blocks in Notion using Prettier. Made by notaku.so

Hvad er Notion Code Formatter?

Notion Code Formatter er en Chrome-udvidelse udviklet af https://notaku.so, og dens hovedfunktion er "Format code blocks in Notion using Prettier. Made by notaku.so".

Udvidelsesskærmbilleder

screenshot

Download Notion Code Formatter-udvidelses-CRX-fil

Download Notion Code Formatter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Format your Notion code blocks white space and indentation

This extension will add a "format" button at the top of all Notion code blocks                    

Grundlæggende oplysninger om udvidelsen

Navn Notion Code Formatter Notion Code Formatter
ID maijefmgfbmajbpbdlpbbplggifdgmme
Officiel URL https://chromewebstore.google.com/detail/notion-code-formatter/maijefmgfbmajbpbdlpbbplggifdgmme
Beskrivelse Format code blocks in Notion using Prettier. Made by notaku.so
Filstørrelse 1.51 MB
Antal Installationer 131
Nuværende Version 1.0.3
Senest Opdateret 2023-03-16
Udgivelsesdato 2023-02-19
Bedømmelse 3.14/5 Samlet 7 Bedømmelser
Udvikler https://notaku.so
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://notaku.so
Hjælpeside-URL https://notaku.so
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Notion Code Formatter",
    "version": "1.0.3",
    "description": "Format code blocks in Notion using Prettier. Made by notaku.so",
    "author": "Tommaso De Rossi",
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "main.js"
            ],
            "css": [
                "style.css"
            ],
            "matches": [
                "https:\/\/www.notion.so\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "formatter.js"
            ]
        }
    ]
}