jsFiddle Player
Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox.
Cos'è jsFiddle Player?
jsFiddle Player è un'estensione di Chrome sviluppata da busterc, e la sua funzione principale è "Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione jsFiddle Player
Scarica i file di estensione jsFiddle Player in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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)! Informazioni di Base sull'Estensione
| Nome | |
| ID | acmoiaipblimhfnjejofmmfjkgpedcpd |
| URL Ufficiale | https://chromewebstore.google.com/detail/jsfiddle-player/acmoiaipblimhfnjejofmmfjkgpedcpd |
| Descrizione | Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox. |
| Dimensione del File | 28.39 KB |
| Conteggio Installazioni | 673 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2012-05-15 |
| Data di Pubblicazione | 2012-05-15 |
| Valutazione | 3.50/5 Totale 8 Valutazioni |
| Sviluppatore | busterc |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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\/*"
]
} | |