Does it use SVG?
Show an icon if a page uses SVG.
Cos'è Does it use SVG??
Does it use SVG? è un'estensione di Chrome sviluppata da Philip Rogers, e la sua funzione principale è "Show an icon if a page uses SVG.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Does it use SVG?
Scarica i file di estensione Does it use SVG? in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This extension shows a small SVG icon on pages that use SVG content.
Informazioni di Base sull'Estensione
Nome | Does it use SVG? |
ID | nmihkihinlonaiknpgifhlgdmbaibebi |
URL Ufficiale | https://chromewebstore.google.com/detail/does-it-use-svg/nmihkihinlonaiknpgifhlgdmbaibebi |
Descrizione | Show an icon if a page uses SVG. |
Dimensione del File | 19.75 KB |
Conteggio Installazioni | 142 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2013-02-28 |
Data di Pubblicazione | 2013-02-27 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Philip Rogers |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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 } |