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. 扩展基本信息
| 名称 | |
| 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\/*"
]
} | |