Gyazo Download

Add a download button to Gyazo images

What is Gyazo Download?

Gyazo Download is a Chrome extension developed by RostiMelk, and its main feature is "Add a download button to Gyazo images".

Extension Screenshots

screenshot

Download Gyazo Download Extension CRX File

Download Gyazo Download extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Gyazo Download Gyazo Download
ID ibhpaofljfiopjggpgmfmhjempjhffjb
Official URL https://chromewebstore.google.com/detail/gyazo-download/ibhpaofljfiopjggpgmfmhjempjhffjb
Description Add a download button to Gyazo images
File Size 28.31 KB
Installation Count 121
Current Version 1.0
Last Updated 2023-02-22
Publish Date 2023-02-22
Developer RostiMelk
Email [email protected]
Payment Type free
Extension Website https://github.com/RostiMelk/gyazo-download
Help Page URL https://github.com/RostiMelk/gyazo-download/issues
Supported Languages 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\/*"
    ]
}