Gyazo Download

Add a download button to Gyazo images

Wat is Gyazo Download?

Gyazo Download is een Chrome-extensie ontwikkeld door RostiMelk, en de belangrijkste functie is "Add a download button to Gyazo images".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Gyazo Download

Download Gyazo Download-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Gyazo Download Gyazo Download
ID ibhpaofljfiopjggpgmfmhjempjhffjb
Officiële URL https://chromewebstore.google.com/detail/gyazo-download/ibhpaofljfiopjggpgmfmhjempjhffjb
Beschrijving Add a download button to Gyazo images
Bestandsgrootte 28.31 KB
Aantal Installaties 121
Huidige Versie 1.0
Laatst Bijgewerkt 2023-02-22
Publicatiedatum 2023-02-22
Ontwikkelaar RostiMelk
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/RostiMelk/gyazo-download
Help Pagina-URL https://github.com/RostiMelk/gyazo-download/issues
Ondersteunde Talen 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\/*"
    ]
}