Render Selection
Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have…
Render Selectionとは何ですか?
Render Selectionはmichaelstratmanによって開発されたChromeの拡張機能で、その主な機能は「Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have…」です。
拡張機能のスクリーンショット
Render Selection拡張機能のCRXファイルをダウンロード
Render Selection拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have text selected and you right click you can render the selected text as HTML in a new tab. Also you can right click anywhere and you'll have the option to render your clipboard in a new tab as well. Use it when viewing example html snippets on sites like stackoverflow or other sites.
拡張機能の基本情報
名前 | Render Selection |
ID | jcmgcgddggonhfmkjkogkmifcfmkmgfg |
公式URL | https://chromewebstore.google.com/detail/render-selection/jcmgcgddggonhfmkjkogkmifcfmkmgfg |
説明 | Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have… |
ファイルサイズ | 351 KB |
インストール数 | 18 |
現在のバージョン | 0.5 |
最終更新日 | 2013-05-08 |
公開日 | 2013-05-08 |
評価 | 4.00/5 合計 3 レビュー |
開発者 | michaelstratman |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/michaelstratman/RenderSelection |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Render Selection", "permissions": [ "contextMenus", "tabs", "clipboardRead", "http:\/\/*\/*", "https:\/\/*\/*" ], "version": "0.5", "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "js": [ "jquery.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "icons": { "16": "icon.png" }, "manifest_version": 2 } |