jsFiddle Player
Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox.
什么是jsFiddle Player?
jsFiddle Player是由busterc开发的Chrome扩展程序,该扩展的主要功能是“Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox.”。
扩展截图
下载jsFiddle Player扩展crx文件
下载jsFiddle Player扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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)!
扩展基本信息
名称 | jsFiddle Player |
ID | acmoiaipblimhfnjejofmmfjkgpedcpd |
官方URL | https://chromewebstore.google.com/detail/jsfiddle-player/acmoiaipblimhfnjejofmmfjkgpedcpd |
简介 | Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox. |
文件大小 | 28.39 KB |
安装次数 | 673 |
当前版本 | 1.0 |
更新时间 | 2012-05-15 |
上架时间 | 2012-05-15 |
评分 | 3.50/5 共8次评分 |
开发者 | busterc |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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\/*" ] } |