SVG link viewer
Show previews of all links to SVGs
SVG link viewerとは何ですか?
SVG link viewerはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Show previews of all links to SVGs」です。
拡張機能のスクリーンショット
SVG link viewer拡張機能のCRXファイルをダウンロード
SVG link viewer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Searches the DOM for links containing SVGs and displays a preview of that SVG below the link.
拡張機能の基本情報
名前 | SVG link viewer |
ID | lnggninmgmlcfbancjjfiplammfeeihj |
公式URL | https://chromewebstore.google.com/detail/svg-link-viewer/lnggninmgmlcfbancjjfiplammfeeihj |
説明 | Show previews of all links to SVGs |
ファイルサイズ | 34.06 KB |
インストール数 | 694 |
現在のバージョン | 2 |
最終更新日 | 2015-10-26 |
公開日 | 2015-10-26 |
評価 | 1.50/5 合計 6 レビュー |
開発者 | Unknown |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SVG link viewer", "manifest_version": 2, "version": "2", "description": "Show previews of all links to SVGs", "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "name": "Preview SVGs", "icons": [ "icon.png" ], "default_icon": "icon.png" }, "content_scripts": [ { "js": [ "jquery.min.js", "background.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |