DataURI2Image
DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.
Cos'è DataURI2Image?
DataURI2Image è un'estensione di Chrome sviluppata da shoito, e la sua funzione principale è "DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione DataURI2Image
Scarica i file di estensione DataURI2Image 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
How to use 1. Select data URI scheme on Web site like gist, blog ex) data:image/png;base64,iVBORw0KGgoAA... 2. Click "Data URI to Image" from context menu Data URI scheme samples https://gist.github.com/shoito/5868550
Informazioni di Base sull'Estensione
Nome | DataURI2Image |
ID | bohclmjbokloadmjfmdoahocaffhkpgc |
URL Ufficiale | https://chromewebstore.google.com/detail/datauri2image/bohclmjbokloadmjfmdoahocaffhkpgc |
Descrizione | DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it. |
Dimensione del File | 92.35 KB |
Conteggio Installazioni | 41 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2019-10-25 |
Data di Pubblicazione | 2019-10-24 |
Valutazione | 4.80/5 Totale 5 Valutazioni |
Sviluppatore | shoito |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "1.0.0", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "ja", "background": { "persistent": false, "scripts": [ "scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "components\/jquery\/jquery.js", "scripts\/contentscript.js" ], "run_at": "document_idle", "all_frames": false } ], "permissions": [ "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*" ] } |