Does it use SVG?
Show an icon if a page uses SVG.
Wat is Does it use SVG??
Does it use SVG? is een Chrome-extensie ontwikkeld door Philip Rogers, en de belangrijkste functie is "Show an icon if a page uses SVG.".
Extensie Screenshots
Download het CRX-bestand van de extensie Does it use SVG?
Download Does it use SVG?-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension shows a small SVG icon on pages that use SVG content.
Basisinformatie over de Extensie
Naam | Does it use SVG? |
ID | nmihkihinlonaiknpgifhlgdmbaibebi |
Officiële URL | https://chromewebstore.google.com/detail/does-it-use-svg/nmihkihinlonaiknpgifhlgdmbaibebi |
Beschrijving | Show an icon if a page uses SVG. |
Bestandsgrootte | 19.75 KB |
Aantal Installaties | 142 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2013-02-28 |
Publicatiedatum | 2013-02-27 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Philip Rogers |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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 } |