Code Highlighter for Substack

Highlights code blocks in Substack. It also copies code in one click and changes the font size. Supports 20+ programming languages.

Wat is Code Highlighter for Substack?

Code Highlighter for Substack is een Chrome-extensie ontwikkeld door hal, en de belangrijkste functie is "Highlights code blocks in Substack. It also copies code in one click and changes the font size. Supports 20+ programming languages.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Code Highlighter for Substack

Download Code Highlighter for Substack-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Makes it very convenient for users to read and use code blocks found on Substack.                    

Basisinformatie over de Extensie

Naam Code Highlighter for Substack Code Highlighter for Substack
ID aconkkddeojidkaellgocfpkapfiilem
Officiële URL https://chromewebstore.google.com/detail/code-highlighter-for-subs/aconkkddeojidkaellgocfpkapfiilem
Beschrijving Highlights code blocks in Substack. It also copies code in one click and changes the font size. Supports 20+ programming languages.
Bestandsgrootte 162 KB
Aantal Installaties 34
Huidige Versie 1.0.0
Laatst Bijgewerkt 2022-10-10
Publicatiedatum 2022-10-09
Ontwikkelaar hal
E-mail [email protected]
Betalingswijze in_app
Help Pagina-URL https://linktr.ee/hal_jpeg
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Code Highlighter for Substack",
    "version": "1.0.0",
    "description": "Highlights code blocks in Substack. It also copies code in one click and changes the font size. Supports 20+ programming languages.",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js",
        "run_at": "document_end"
    },
    "icons": {
        "128": "icon.png",
        "48": "icon.png",
        "16": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "ExtPay.js",
                "content.js",
                "vendor\/highlight.min.js",
                "vendor\/highlight_pretty_addon.min.js"
            ],
            "css": [
                "vendor\/default.min.css",
                "vendor\/default_pretty_addon.min.css"
            ],
            "matches": [
                "https:\/\/*.substack.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "webNavigation"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "http:\/\/*.substack.com\/*",
        "https:\/\/*.substack.com\/*"
    ]
}