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.”。
擴展截圖
下載Code Highlighter for Substack擴展crx文件
下載Code Highlighter for Substack擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Makes it very convenient for users to read and use code blocks found on Substack.
擴展基本資訊
名稱 | Code Highlighter for Substack |
ID | aconkkddeojidkaellgocfpkapfiilem |
官方網址 | 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\/*" ] } |