Gyazo Download

Add a download button to Gyazo images

Gyazo Download là gì?

Gyazo Download là một tiện ích mở rộng Chrome được phát triển bởi RostiMelk, và tính năng chính của nó là "Add a download button to Gyazo images".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Gyazo Download

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

                        This extension simplifies the process of downloading your Gyazo images and videos. With a new download button added to all assets, you can now easily download them with just one click, saving you time and hassle. Whether you use Gyazo for work or personal projects, this feature is a useful addition that streamlines your workflow.                    

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

Tên Gyazo Download Gyazo Download
ID ibhpaofljfiopjggpgmfmhjempjhffjb
URL Chính Thức https://chromewebstore.google.com/detail/gyazo-download/ibhpaofljfiopjggpgmfmhjempjhffjb
Mô tả Add a download button to Gyazo images
Kích Thước Tệp 28.31 KB
Số Lần Cài Đặt 121
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2023-02-22
Ngày Phát Hành 2023-02-22
Nhà Phát Triển RostiMelk
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/RostiMelk/gyazo-download
URL Trang Trợ Giúp https://github.com/RostiMelk/gyazo-download/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Gyazo Download",
    "description": "Add a download button to Gyazo images",
    "version": "1.0",
    "icons": {
        "16": "icons\/icon16.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png",
        "256": "icons\/icon256.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/gyazo.com\/*"
            ],
            "js": [
                "js\/content_script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "downloads"
    ],
    "host_permissions": [
        "https:\/\/gyazo.com\/*"
    ]
}