GitHub Inline SVG
Shows an inline preview of SVG files on GitHub
Co to jest GitHub Inline SVG?
GitHub Inline SVG to rozszerzenie Chrome opracowane przez Zach Bruggeman, a jego główną funkcją jest „Shows an inline preview of SVG files on GitHub”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GitHub Inline SVG
Pobierz pliki rozszerzeń GitHub Inline SVG 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
Shows an inline preview of SVG files on GitHub. You can toggle between viewing the image, or the SVG code. Nifty!
Podstawowe informacje o rozszerzeniu
Nazwa | GitHub Inline SVG |
ID | jbfbnojdibndlopjgadibhcphchdbfkh |
Oficjalny URL | https://chromewebstore.google.com/detail/github-inline-svg/jbfbnojdibndlopjgadibhcphchdbfkh |
Opis | Shows an inline preview of SVG files on GitHub |
Rozmiar pliku | 10.42 KB |
Liczba instalacji | 289 |
Aktualna Wersja | 0.0.3 |
Ostatnia Aktualizacja | 2014-08-26 |
Data Publikacji | 2014-08-26 |
Ocena | 5.00/5 Łącznie 3 Oceny |
Deweloper | Zach Bruggeman |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/remixz/gh-inline-svg |
Adres URL Strony Pomocy | https://github.com/remixz/gh-inline-svg/issues |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub Inline SVG", "description": "Shows an inline preview of SVG files on GitHub", "version": "0.0.3", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "index.js" ] } ], "permissions": [ "https:\/\/github.com\/*" ], "icons": { "48": "icon_48.png", "128": "icon_128.png" } } |