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.

Apa itu Code Highlighter for Substack?

Code Highlighter for Substack adalah ekstensi Chrome yang dikembangkan oleh hal, dan fitur utamanya adalah "Highlights code blocks in Substack. It also copies code in one click and changes the font size. Supports 20+ programming languages.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Code Highlighter for Substack

Unduh file ekstensi Code Highlighter for Substack dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Code Highlighter for Substack Code Highlighter for Substack
ID aconkkddeojidkaellgocfpkapfiilem
URL Resmi https://chromewebstore.google.com/detail/code-highlighter-for-subs/aconkkddeojidkaellgocfpkapfiilem
Deskripsi Highlights code blocks in Substack. It also copies code in one click and changes the font size. Supports 20+ programming languages.
Ukuran File 162 KB
Jumlah Instalasi 34
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2022-10-10
Tanggal Publikasi 2022-10-09
Pengembang hal
Email [email protected]
Tipe Pembayaran in_app
URL Halaman Bantuan https://linktr.ee/hal_jpeg
Bahasa yang Didukung 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\/*"
    ]
}