GitHub Inline SVG
Shows an inline preview of SVG files on GitHub
GitHub Inline SVGとは何ですか?
GitHub Inline SVGはZach Bruggemanによって開発されたChromeの拡張機能で、その主な機能は「Shows an inline preview of SVG files on GitHub」です。
拡張機能のスクリーンショット
GitHub Inline SVG拡張機能のCRXファイルをダウンロード
GitHub Inline SVG拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Shows an inline preview of SVG files on GitHub. You can toggle between viewing the image, or the SVG code. Nifty!
拡張機能の基本情報
名前 | GitHub Inline SVG |
ID | jbfbnojdibndlopjgadibhcphchdbfkh |
公式URL | https://chromewebstore.google.com/detail/github-inline-svg/jbfbnojdibndlopjgadibhcphchdbfkh |
説明 | Shows an inline preview of SVG files on GitHub |
ファイルサイズ | 10.42 KB |
インストール数 | 289 |
現在のバージョン | 0.0.3 |
最終更新日 | 2014-08-26 |
公開日 | 2014-08-26 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | Zach Bruggeman |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/remixz/gh-inline-svg |
ヘルプページのURL | https://github.com/remixz/gh-inline-svg/issues |
対応言語 | 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" } } |