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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 } |