Notion Code Formatter

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

Vad är Notion Code Formatter?

Notion Code Formatter är en Chrome-tillägg utvecklad av https://notaku.so, och dess huvudfunktion är "Format code blocks in Notion using Prettier. Made by notaku.so".

Tilläggsskärmbilder

screenshot

Ladda ner Notion Code Formatter-förlängningens CRX-fil

Ladda ner Notion Code Formatter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Notion Code Formatter Notion Code Formatter
ID maijefmgfbmajbpbdlpbbplggifdgmme
Officiell webbadress https://chromewebstore.google.com/detail/notion-code-formatter/maijefmgfbmajbpbdlpbbplggifdgmme
Beskrivning Format code blocks in Notion using Prettier. Made by notaku.so
Filstorlek 1.51 MB
Antal Installationer 131
Aktuell Version 1.0.3
Senast Uppdaterad 2023-03-16
Publiceringsdatum 2023-02-19
Betyg 3.14/5 Totalt 7 Betyg
Utvecklare https://notaku.so
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://notaku.so
Hjälpsida URL https://notaku.so
Stödda Språk 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"
            ]
        }
    ]
}