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 |
官方網址 | 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\/*" ] } |