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はhalによって開発されたChromeの拡張機能で、その主な機能は「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拡張機能のCRXファイルをダウンロード
Code Highlighter for Substack拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Makes it very convenient for users to read and use code blocks found on 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 |
| Eメール | [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\/*"
]
} | |