DataURI2Image
DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.
ما هو DataURI2Image؟
DataURI2Image هو إضافة Chrome تم تطويرها بواسطة shoito، والميزة الرئيسية لها هي "DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة DataURI2Image
قم بتنزيل ملفات الامتداد DataURI2Image بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 معلومات أساسية عن التمديد
| الاسم | |
| ID | bohclmjbokloadmjfmdoahocaffhkpgc |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/datauri2image/bohclmjbokloadmjfmdoahocaffhkpgc |
| الوصف | DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it. |
| حجم الملف | 92.35 KB |
| عدد التثبيتات | 41 |
| النسخة الحالية | 1.0.0 |
| آخر تحديث | 2019-10-25 |
| تاريخ النشر | 2019-10-24 |
| تقييم | 4.80/5 مجموع تقييمات 5 |
| المطور | shoito |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| اللغات المدعومة | 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:\/\/*\/*"
]
} | |