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 là gì?
Code Highlighter for Substack là một tiện ích mở rộng Chrome được phát triển bởi hal, và tính năng chính của nó là "Highlights code blocks in Substack. It also copies code in one click and changes the font size. Supports 20+ programming languages.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Code Highlighter for Substack
Tải xuống các tệp mở rộng Code Highlighter for Substack dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Makes it very convenient for users to read and use code blocks found on Substack.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Code Highlighter for Substack |
ID | aconkkddeojidkaellgocfpkapfiilem |
URL Chính Thức | https://chromewebstore.google.com/detail/code-highlighter-for-subs/aconkkddeojidkaellgocfpkapfiilem |
Mô tả | Highlights code blocks in Substack. It also copies code in one click and changes the font size. Supports 20+ programming languages. |
Kích Thước Tệp | 162 KB |
Số Lần Cài Đặt | 34 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2022-10-10 |
Ngày Phát Hành | 2022-10-09 |
Nhà Phát Triển | hal |
[email protected] | |
Loại Thanh Toán | in_app |
URL Trang Trợ Giúp | https://linktr.ee/hal_jpeg |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |