jsFiddle Player
Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox.
Co to jest jsFiddle Player?
jsFiddle Player to rozszerzenie Chrome opracowane przez busterc, a jego główną funkcją jest „Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia jsFiddle Player
Pobierz pliki rozszerzeń jsFiddle Player w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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)! Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | acmoiaipblimhfnjejofmmfjkgpedcpd |
| Oficjalny URL | https://chromewebstore.google.com/detail/jsfiddle-player/acmoiaipblimhfnjejofmmfjkgpedcpd |
| Opis | Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox. |
| Rozmiar pliku | 28.39 KB |
| Liczba instalacji | 673 |
| Aktualna Wersja | 1.0 |
| Ostatnia Aktualizacja | 2012-05-15 |
| Data Publikacji | 2012-05-15 |
| Ocena | 3.50/5 Łącznie 8 Oceny |
| Deweloper | busterc |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | 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\/*"
]
} | |