SVG Fetcher
Fetch all the SVG from the web
什么是SVG Fetcher?
SVG Fetcher是由https://giroux-kevin.fr开发的Chrome扩展程序,该扩展的主要功能是“Fetch all the SVG from the web”。
扩展截图
下载SVG Fetcher扩展crx文件
下载SVG Fetcher扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Just click on the add-on icon to get all the download links for the rendered page. Refresh the page when you're done. 扩展基本信息
| 名称 | |
| ID | kckjhgncjgdbiaadckjcnhbonfihmcic |
| 官方URL | https://chromewebstore.google.com/detail/svg-fetcher/kckjhgncjgdbiaadckjcnhbonfihmcic |
| 简介 | Fetch all the SVG from the web |
| 文件大小 | 13.13 KB |
| 安装次数 | 569 |
| 当前版本 | 1.1 |
| 更新时间 | 2018-06-11 |
| 上架时间 | 2018-06-11 |
| 评分 | 1.33/5 共3次评分 |
| 开发者 | https://giroux-kevin.fr |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "SVG Fetcher",
"description": "Fetch all the SVG from the web",
"version": "1.1",
"browser_action": {
"default_icon": "icon128.png",
"default_title": "Show links"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"activeTab",
"*:\/\/*\/*"
],
"icons": {
"32": "icon32.png",
"128": "icon128.png"
}
} | |