Does it use SVG?
Show an icon if a page uses SVG.
What is Does it use SVG??
Does it use SVG? is a Chrome extension developed by Philip Rogers, and its main feature is "Show an icon if a page uses SVG.".
Extension Screenshots
Download Does it use SVG? Extension CRX File
Download Does it use SVG? extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension shows a small SVG icon on pages that use SVG content.
Extension Basic Information
Name | Does it use SVG? |
ID | nmihkihinlonaiknpgifhlgdmbaibebi |
Official URL | https://chromewebstore.google.com/detail/does-it-use-svg/nmihkihinlonaiknpgifhlgdmbaibebi |
Description | Show an icon if a page uses SVG. |
File Size | 19.75 KB |
Installation Count | 142 |
Current Version | 1.1 |
Last Updated | 2013-02-28 |
Publish Date | 2013-02-27 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Philip Rogers |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |