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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hal และคุณลักษณะหลักของมันคือ "Highlights code blocks in Substack. It also copies code in one click and changes the font size. Supports 20+ programming languages."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Code Highlighter for Substack
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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\/*" ] } |