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.
Qu'est-ce que Code Highlighter for Substack ?
Code Highlighter for Substack est une extension Chrome développée par hal, et sa fonction principale est "Highlights code blocks in Substack. It also copies code in one click and changes the font size. Supports 20+ programming languages.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Code Highlighter for Substack
Téléchargez les fichiers d'extension Code Highlighter for Substack au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Makes it very convenient for users to read and use code blocks found on Substack.
Informations de Base sur l'Extension
Nom | Code Highlighter for Substack |
ID | aconkkddeojidkaellgocfpkapfiilem |
URL Officiel | https://chromewebstore.google.com/detail/code-highlighter-for-subs/aconkkddeojidkaellgocfpkapfiilem |
Description | Highlights code blocks in Substack. It also copies code in one click and changes the font size. Supports 20+ programming languages. |
Taille du Fichier | 162 KB |
Nombre d'Installations | 34 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2022-10-10 |
Date de Publication | 2022-10-09 |
Développeur | hal |
[email protected] | |
Type de Paiement | in_app |
URL de la Page d'Aide | https://linktr.ee/hal_jpeg |
Langues Prises en Charge | 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\/*" ] } |