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 |
官方網址 | 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:\/\/*\/*" ] } ] } |