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.

What is Code Highlighter for Substack?

Code Highlighter for Substack is a Chrome extension developed by hal, and its main feature is "Highlights code blocks in Substack. It also copies code in one click and changes the font size. Supports 20+ programming languages.".

Extension Screenshots

screenshot
screenshot

Download Code Highlighter for Substack Extension CRX File

Download Code Highlighter for Substack extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Code Highlighter for Substack Code Highlighter for Substack
ID aconkkddeojidkaellgocfpkapfiilem
Official URL https://chromewebstore.google.com/detail/code-highlighter-for-subs/aconkkddeojidkaellgocfpkapfiilem
Description Highlights code blocks in Substack. It also copies code in one click and changes the font size. Supports 20+ programming languages.
File Size 162 KB
Installation Count 34
Current Version 1.0.0
Last Updated 2022-10-10
Publish Date 2022-10-09
Developer hal
Email [email protected]
Payment Type in_app
Help Page URL https://linktr.ee/hal_jpeg
Supported Languages 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\/*"
    ]
}