DataURI2Image
DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.
DataURI2Image là gì?
DataURI2Image là một tiện ích mở rộng Chrome được phát triển bởi shoito, và tính năng chính của nó là "DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng DataURI2Image
Tải xuống các tệp mở rộng DataURI2Image dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | DataURI2Image |
ID | bohclmjbokloadmjfmdoahocaffhkpgc |
URL Chính Thức | https://chromewebstore.google.com/detail/datauri2image/bohclmjbokloadmjfmdoahocaffhkpgc |
Mô tả | DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it. |
Kích Thước Tệp | 92.35 KB |
Số Lần Cài Đặt | 41 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2019-10-25 |
Ngày Phát Hành | 2019-10-24 |
Đánh Giá | 4.80/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | shoito |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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:\/\/*\/*" ] } |