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.
Was ist Code Highlighter for Substack?
Code Highlighter for Substack ist eine Chrome-Erweiterung, die von hal entwickelt wurde, und ihr Hauptmerkmal ist "Highlights code blocks in Substack. It also copies code in one click and changes the font size. Supports 20+ programming languages.".
Erweiterungsscreenshots
Code Highlighter for Substack-Erweiterungs-CRX-Datei herunterladen
Laden Sie Code Highlighter for Substack-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Makes it very convenient for users to read and use code blocks found on Substack. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | aconkkddeojidkaellgocfpkapfiilem |
| Offizielle URL | https://chromewebstore.google.com/detail/code-highlighter-for-subs/aconkkddeojidkaellgocfpkapfiilem |
| Beschreibung | Highlights code blocks in Substack. It also copies code in one click and changes the font size. Supports 20+ programming languages. |
| Dateigröße | 162 KB |
| Installationsanzahl | 34 |
| Aktuelle Version | 1.0.0 |
| Letztes Update | 2022-10-10 |
| Veröffentlichungsdatum | 2022-10-09 |
| Entwickler | hal |
| [email protected] | |
| Zahlungsart | in_app |
| Hilfeseite URL | https://linktr.ee/hal_jpeg |
| Unterstützte Sprachen | 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\/*"
]
} | |