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…
¿Qué es Render Selection?
Render Selection es una extensión de Chrome desarrollada por michaelstratman, y su función principal es "Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have…".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Render Selection
Descarga archivos de extensión Render Selection en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Render Selection |
ID | jcmgcgddggonhfmkjkogkmifcfmkmgfg |
URL Oficial | https://chromewebstore.google.com/detail/render-selection/jcmgcgddggonhfmkjkogkmifcfmkmgfg |
Descripción | Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have… |
Tamaño del Archivo | 351 KB |
Cantidad de Instalaciones | 18 |
Versión Actual | 0.5 |
Última Actualización | 2013-05-08 |
Fecha de Publicación | 2013-05-08 |
Calificación | 4.00/5 Total de 3 Calificaciones |
Desarrollador | michaelstratman |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/michaelstratman/RenderSelection |
Idiomas Soportados | 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 } |