DataURI2Image
DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.
Hvad er DataURI2Image?
DataURI2Image er en Chrome-udvidelse udviklet af shoito, og dens hovedfunktion er "DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.".
Udvidelsesskærmbilleder
Download DataURI2Image-udvidelses-CRX-fil
Download DataURI2Image-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | DataURI2Image |
ID | bohclmjbokloadmjfmdoahocaffhkpgc |
Officiel URL | https://chromewebstore.google.com/detail/datauri2image/bohclmjbokloadmjfmdoahocaffhkpgc |
Beskrivelse | DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it. |
Filstørrelse | 92.35 KB |
Antal Installationer | 41 |
Nuværende Version | 1.0.0 |
Senest Opdateret | 2019-10-25 |
Udgivelsesdato | 2019-10-24 |
Bedømmelse | 4.80/5 Samlet 5 Bedømmelser |
Udvikler | shoito |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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:\/\/*\/*" ] } |