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.

Cos'è Code Highlighter for Substack?

Code Highlighter for Substack è un'estensione di Chrome sviluppata da hal, e la sua funzione principale è "Highlights code blocks in Substack. It also copies code in one click and changes the font size. Supports 20+ programming languages.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Code Highlighter for Substack

Scarica i file di estensione Code Highlighter for Substack in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Code Highlighter for Substack Code Highlighter for Substack
ID aconkkddeojidkaellgocfpkapfiilem
URL Ufficiale https://chromewebstore.google.com/detail/code-highlighter-for-subs/aconkkddeojidkaellgocfpkapfiilem
Descrizione Highlights code blocks in Substack. It also copies code in one click and changes the font size. Supports 20+ programming languages.
Dimensione del File 162 KB
Conteggio Installazioni 34
Versione Corrente 1.0.0
Ultimo Aggiornamento 2022-10-10
Data di Pubblicazione 2022-10-09
Sviluppatore hal
Email [email protected]
Tipo di Pagamento in_app
URL della Pagina di Aiuto https://linktr.ee/hal_jpeg
Lingue Supportate 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\/*"
    ]
}