Copy data url

Saves images to data urls.

Copy data url là gì?

Copy data url là một tiện ích mở rộng Chrome được phát triển bởi https://esstudio.site, và tính năng chính của nó là "Saves images to data urls.".

Ả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 Copy data url

Tải xuống các tệp mở rộng Copy data url 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

                        Convert any image to a base64 data url. Easy when you quickly need to inline images in your html or css documents.

It now supports inline svg images and the file:// protocol (when you're viewing local files).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Copy data url Copy data url
ID kjffeaphhhihmdmginahldbkfhfgfifn
URL Chính Thức https://chromewebstore.google.com/detail/copy-data-url/kjffeaphhhihmdmginahldbkfhfgfifn
Mô tả Saves images to data urls.
Kích Thước Tệp 41.65 KB
Số Lần Cài Đặt 113
Phiên Bản Hiện Tại 1.0.4
Cập Nhật Lần Cuối 2022-10-01
Ngày Phát Hành 2019-04-22
Nhà Phát Triển https://esstudio.site
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://esstudio.site/copy-data-url-chrome-extension/
URL Trang Trợ Giúp https://esstudio.site/contact
URL Trang Chính Sách Bảo Mật https://echosierrastudio.github.io/EchoSierraStudio/chrome-web-extensions-policy
Ngôn Ngữ Được Hỗ Trợ id,ms,de,en,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,hr,it,lv,lt,hu,pl,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "short_name": "__MSG_shortName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "1.0.4",
    "permissions": [
        "contextMenus"
    ],
    "action": {
        "default_icon": {
            "16": "assets\/icon16.png",
            "24": "assets\/icon24.png",
            "32": "assets\/icon32.png",
            "48": "assets\/icon48.png",
            "64": "assets\/icon64.png",
            "128": "assets\/icon128.png"
        },
        "default_title": "__MSG_appName__"
    },
    "icons": {
        "16": "assets\/icon16.png",
        "24": "assets\/icon24.png",
        "32": "assets\/icon32.png",
        "48": "assets\/icon48.png",
        "64": "assets\/icon64.png",
        "128": "assets\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ]
}