Notion Syntax Highlighter

Improves Notion's code blocks syntax highlighting + adds tons of theme options

Τι είναι το Notion Syntax Highlighter;

Το Notion Syntax Highlighter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jserwatka.dev, και η κύρια λειτουργία του είναι "Improves Notion's code blocks syntax highlighting + adds tons of theme options".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Notion Syntax Highlighter

Λήψη αρχείων επέκτασης Notion Syntax Highlighter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        🖼️ 245 available themes
🔧 Improved syntax highlighting
🩹 Minor fixes for code blocks
🔓  Open source & free - you can find github repo here: 
       https://github.com/JSerwatka/notion-syntax-highlighter
_________________________________________________________
 
                               🛠️ HOW DOES IT WORK
_________________________________________________________

1. Upon installing the extension, the default theme (Gruvbox dark) will be automatically selected.
2. To change the theme, simply click on the extension's icon and select a different theme.
3. For convenience, only a few themes are visible in the main theme dropdown. To add more, click below the dropdown or right-click on the extension's icon and choose the "Options" menu. On the options page, select the themes you want to appear in your default list.

_________________________________________________________

                                🦁 FOR BRAVE USERS
_________________________________________________________

To make this extension work on Brave browser, please follow this instruction: https://github.com/JSerwatka/notion-syntax-highlighter#for-brave-users

_________________________________________________________

                                    🔐 PRIVACY POLICY
_________________________________________________________

Notion Syntax Highlighter extension does not analyze or send any user data. All the essential data needed for the extension to function, such as your selected themes and color scheme preferences, are stored locally within your browser.


_________________________________________________________

                          🎁 SUPPORT & CONTRIBUTE 
_________________________________________________________

This extension requires thorough testing, so if you encounter any issues, please report them as bugs here: 
https://github.com/JSerwatka/notion-syntax-highlighter/issues

You can support this project by:
❤️ Rating it
🤗 Proposing changes and contributing to its development
🐛 Reporting any bugs you encounter


_________________________________________________________

                                    🐛 KNOWN ISSUES 
_________________________________________________________

Up-to-date issue list can be found here: 
https://github.com/JSerwatka/notion-syntax-highlighter#known-issues

_________________________________________________________

                                🚀 Future Improvements                             
_________________________________________________________

- Resolve performance issues related to editing large code blocks
- Add shadow and rounded borders (configurable in settings)
- Add line numbers (configurable in settings)
- Allow line height customization (configurable in settings)
- Support prettier and other code formatters
- Simplify the process of adding new themes                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Notion Syntax Highlighter Notion Syntax Highlighter
ID omapdeaklaaabcegmdikkciplbgignak
Επίσημο URL https://chromewebstore.google.com/detail/notion-syntax-highlighter/omapdeaklaaabcegmdikkciplbgignak
Περιγραφή Improves Notion's code blocks syntax highlighting + adds tons of theme options
Μέγεθος Αρχείου 168 KB
Αριθμός Εγκαταστάσεων 258
Τρέχουσα Έκδοση 0.0.3
Τελευταία Ενημέρωση 2024-03-07
Ημερομηνία Δημοσίευσης 2023-07-07
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής jserwatka.dev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/JSerwatka/notion-syntax-highlighter
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/JSerwatka/notion-syntax-highlighter/issues
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/JSerwatka/notion-syntax-highlighter/blob/master/privacy-policy.md
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Notion Syntax Highlighter",
    "description": "Improves Notion's code blocks syntax highlighting + adds tons of theme options",
    "version": "0.0.3",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "img\/logo-16.png",
        "32": "img\/logo-32.png",
        "48": "img\/logo-48.png",
        "128": "img\/logo-128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "img\/logo-48.png"
    },
    "options_page": "options.html",
    "background": {
        "service_worker": "service-worker-loader.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "assets\/index.ts-loader.ab83a5cd.js"
            ],
            "matches": [
                "https:\/\/*.notion.so\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [],
            "resources": [
                "img\/logo-16.png",
                "img\/logo-32.png",
                "img\/logo-48.png",
                "img\/logo-128.png"
            ],
            "use_dynamic_url": false
        },
        {
            "matches": [
                "https:\/\/*.notion.so\/*"
            ],
            "resources": [
                "assets\/chunk-d1255eab.js",
                "assets\/chunk-fadedf14.js",
                "assets\/chunk-ffcfbdba.js",
                "assets\/chunk-db543da2.js"
            ],
            "use_dynamic_url": true
        }
    ]
}