jsFiddle Player
Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox.
Vad är jsFiddle Player?
jsFiddle Player är en Chrome-tillägg utvecklad av busterc, och dess huvudfunktion är "Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox.".
Tilläggsskärmbilder
Ladda ner jsFiddle Player-förlängningens CRX-fil
Ladda ner jsFiddle Player-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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)! Grundläggande Information om Tillägg
| Namn | |
| ID | acmoiaipblimhfnjejofmmfjkgpedcpd |
| Officiell webbadress | https://chromewebstore.google.com/detail/jsfiddle-player/acmoiaipblimhfnjejofmmfjkgpedcpd |
| Beskrivning | Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox. |
| Filstorlek | 28.39 KB |
| Antal Installationer | 673 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2012-05-15 |
| Publiceringsdatum | 2012-05-15 |
| Betyg | 3.50/5 Totalt 8 Betyg |
| Utvecklare | busterc |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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\/*"
]
} | |