jsFiddle Player
Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox.
Was ist jsFiddle Player?
jsFiddle Player ist eine Chrome-Erweiterung, die von busterc entwickelt wurde, und ihr Hauptmerkmal ist "Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox.".
Erweiterungsscreenshots
jsFiddle Player-Erweiterungs-CRX-Datei herunterladen
Laden Sie jsFiddle Player-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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)! Grundlegende Informationen zur Erweiterung
| Name | |
| ID | acmoiaipblimhfnjejofmmfjkgpedcpd |
| Offizielle URL | https://chromewebstore.google.com/detail/jsfiddle-player/acmoiaipblimhfnjejofmmfjkgpedcpd |
| Beschreibung | Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox. |
| Dateigröße | 28.39 KB |
| Installationsanzahl | 673 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2012-05-15 |
| Veröffentlichungsdatum | 2012-05-15 |
| Bewertung | 3.50/5 Insgesamt 8 Bewertungen |
| Entwickler | busterc |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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\/*"
]
} | |