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.

Code Highlighter for Substack란 무엇입니까?

Code Highlighter for Substack은(는) hal에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Highlights code blocks in Substack. It also copies code in one click and changes the font size. Supports 20+ programming languages."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Code Highlighter for Substack 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

확장 프로그램 기본 정보

이름 Code Highlighter for Substack Code Highlighter for Substack
ID aconkkddeojidkaellgocfpkapfiilem
공식 URL https://chromewebstore.google.com/detail/code-highlighter-for-subs/aconkkddeojidkaellgocfpkapfiilem
설명 Highlights code blocks in Substack. It also copies code in one click and changes the font size. Supports 20+ programming languages.
파일 크기 162 KB
설치 횟수 34
현재 버전 1.0.0
최근 업데이트 2022-10-10
출시 날짜 2022-10-09
개발자 hal
이메일 [email protected]
결제 유형 in_app
도움말 페이지 URL https://linktr.ee/hal_jpeg
지원되는 언어 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\/*"
    ]
}