jsFiddle Player
Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox.
¿Qué es jsFiddle Player?
jsFiddle Player es una extensión de Chrome desarrollada por busterc, y su función principal es "Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión jsFiddle Player
Descarga archivos de extensión jsFiddle Player 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
jsFiddle is awesome, but sometimes you want to combine all your HTML, CSS & JS into a single HTML file (perhaps to save it to your local disk). jsFiddle Player does that, it simply adds a "play" button to the Omnibox so that you can pop open a new tab/window with the output combined into a single web page. That's it, simple & useful (at least for me)!
Información Básica de la Extensión
Nombre | jsFiddle Player |
ID | acmoiaipblimhfnjejofmmfjkgpedcpd |
URL Oficial | https://chromewebstore.google.com/detail/jsfiddle-player/acmoiaipblimhfnjejofmmfjkgpedcpd |
Descripción | Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox. |
Tamaño del Archivo | 28.39 KB |
Cantidad de Instalaciones | 673 |
Versión Actual | 1.0 |
Última Actualización | 2012-05-15 |
Fecha de Publicación | 2012-05-15 |
Calificación | 3.50/5 Total de 8 Calificaciones |
Desarrollador | busterc |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "jsFiddle Player", "version": "1.0", "manifest_version": 2, "description": "Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox.", "background": { "scripts": [ "background.js" ] }, "page_action": { "default_icon": "img\/icon-016.png", "default_title": "Play this fiddle" }, "icons": { "16": "img\/icon-016.png", "48": "img\/icon-048.png", "128": "img\/icon-128.png" }, "permissions": [ "tabs", "http:\/\/jsfiddle.net\/*", "https:\/\/jsfiddle.net\/*" ] } |