Syntax Highlight Code Blocks
Adds a context menu that provides the ability to add syntax hightlighting to code blocks contained in the page.
Syntax Highlight Code Blocksとは何ですか?
Syntax Highlight Code BlocksはMackenzie Zastrowによって開発されたChromeの拡張機能で、その主な機能は「Adds a context menu that provides the ability to add syntax hightlighting to code blocks contained in the page.」です。
拡張機能のスクリーンショット
Syntax Highlight Code Blocks拡張機能のCRXファイルをダウンロード
Syntax Highlight Code Blocks拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Some blogs/websites just put snippets of code inside of a pre > code block without syntax highlighting. This is alright, but for developers reading the code, it would be helpful if it actually included syntax highlighting. This extension, on activation via the context menu, finds all pre > code blocks an highlights them with highlight.js (https://highlightjs.org/). Icons from Simple Icon (http://simpleicon.com/code-optimization.html) and Iconspedia (http://www.iconspedia.com/icon/source-code-icon-22943.html) - Version 1.4 adds support for converting multiline pres (w/no code block) - Version 1.3 adds support for msdn.microsoft.com magazine code snippets - Version 1.2 adds support for msdn.microsoft.com library simple code snippets
拡張機能の基本情報
名前 | Syntax Highlight Code Blocks |
ID | hpoobjomnbgfehbigjdghibjddfpoigp |
公式URL | https://chromewebstore.google.com/detail/syntax-highlight-code-blo/hpoobjomnbgfehbigjdghibjddfpoigp |
説明 | Adds a context menu that provides the ability to add syntax hightlighting to code blocks contained in the page. |
ファイルサイズ | 24.75 KB |
インストール数 | 1,000 |
現在のバージョン | 1.4 |
最終更新日 | 2015-05-07 |
公開日 | 2015-05-07 |
評価 | 3.25/5 合計 8 レビュー |
開発者 | Mackenzie Zastrow |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/zastrowm/Syntax-Highlight-Code-Blocks |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Syntax Highlight Code Blocks", "version": "1.4", "description": "Adds a context menu that provides the ability to add syntax hightlighting to code blocks contained in the page.", "author": "Mackenzie Zastrow", "permissions": [ "activeTab", "contextMenus" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "manifest_version": 2 } |