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.
Vad är Code Highlighter for Substack?
Code Highlighter for Substack är en Chrome-tillägg utvecklad av hal, och dess huvudfunktion är "Highlights code blocks in Substack. It also copies code in one click and changes the font size. Supports 20+ programming languages.".
Tilläggsskärmbilder
Ladda ner Code Highlighter for Substack-förlängningens CRX-fil
Ladda ner Code Highlighter for Substack-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Makes it very convenient for users to read and use code blocks found on Substack. Grundläggande Information om Tillägg
| Namn | |
| ID | aconkkddeojidkaellgocfpkapfiilem |
| Officiell webbadress | https://chromewebstore.google.com/detail/code-highlighter-for-subs/aconkkddeojidkaellgocfpkapfiilem |
| Beskrivning | Highlights code blocks in Substack. It also copies code in one click and changes the font size. Supports 20+ programming languages. |
| Filstorlek | 162 KB |
| Antal Installationer | 34 |
| Aktuell Version | 1.0.0 |
| Senast Uppdaterad | 2022-10-10 |
| Publiceringsdatum | 2022-10-09 |
| Utvecklare | hal |
| E-post | [email protected] |
| Betalningssätt | in_app |
| Hjälpsida URL | https://linktr.ee/hal_jpeg |
| Stödda Språk | 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\/*"
]
} | |