DataURI2Image
DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.
Qu'est-ce que DataURI2Image ?
DataURI2Image est une extension Chrome développée par shoito, et sa fonction principale est "DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension DataURI2Image
Téléchargez les fichiers d'extension DataURI2Image au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | DataURI2Image |
ID | bohclmjbokloadmjfmdoahocaffhkpgc |
URL Officiel | https://chromewebstore.google.com/detail/datauri2image/bohclmjbokloadmjfmdoahocaffhkpgc |
Description | DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it. |
Taille du Fichier | 92.35 KB |
Nombre d'Installations | 41 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2019-10-25 |
Date de Publication | 2019-10-24 |
Évaluation | 4.80/5 Total 5 Évaluations |
Développeur | shoito |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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:\/\/*\/*" ] } |