GitHub Inline SVG
Shows an inline preview of SVG files on GitHub
Vad är GitHub Inline SVG?
GitHub Inline SVG är en Chrome-tillägg utvecklad av Zach Bruggeman, och dess huvudfunktion är "Shows an inline preview of SVG files on GitHub".
Tilläggsskärmbilder
Ladda ner GitHub Inline SVG-förlängningens CRX-fil
Ladda ner GitHub Inline SVG-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
Shows an inline preview of SVG files on GitHub. You can toggle between viewing the image, or the SVG code. Nifty!
Grundläggande Information om Tillägg
Namn | GitHub Inline SVG |
ID | jbfbnojdibndlopjgadibhcphchdbfkh |
Officiell webbadress | https://chromewebstore.google.com/detail/github-inline-svg/jbfbnojdibndlopjgadibhcphchdbfkh |
Beskrivning | Shows an inline preview of SVG files on GitHub |
Filstorlek | 10.42 KB |
Antal Installationer | 289 |
Aktuell Version | 0.0.3 |
Senast Uppdaterad | 2014-08-26 |
Publiceringsdatum | 2014-08-26 |
Betyg | 5.00/5 Totalt 3 Betyg |
Utvecklare | Zach Bruggeman |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/remixz/gh-inline-svg |
Hjälpsida URL | https://github.com/remixz/gh-inline-svg/issues |
Stödda Språk | 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" } } |