Does it use SVG?
Show an icon if a page uses SVG.
什么是Does it use SVG??
Does it use SVG?是由Philip Rogers开发的Chrome扩展程序,该扩展的主要功能是“Show an icon if a page uses SVG.”。
扩展截图
下载Does it use SVG?扩展crx文件
下载Does it use SVG?扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension shows a small SVG icon on pages that use SVG content. 扩展基本信息
| 名称 | |
| ID | nmihkihinlonaiknpgifhlgdmbaibebi |
| 官方URL | https://chromewebstore.google.com/detail/does-it-use-svg/nmihkihinlonaiknpgifhlgdmbaibebi |
| 简介 | Show an icon if a page uses SVG. |
| 文件大小 | 19.75 KB |
| 安装次数 | 142 |
| 当前版本 | 1.1 |
| 更新时间 | 2013-02-28 |
| 上架时间 | 2013-02-27 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | Philip Rogers |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Does it use SVG?",
"version": "1.1",
"description": "Show an icon if a page uses SVG.",
"background": {
"scripts": [
"background.js"
]
},
"page_action": {
"default_icon": "svg-19.png",
"default_title": "Does it use SVG?"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/\/*"
],
"js": [
"contentscript.js"
],
"run_at": "document_idle",
"all_frames": true
}
],
"icons": {
"24": "svg-24.png",
"48": "svg-48.png",
"128": "svg-128.png"
},
"manifest_version": 2
} | |