Gyazo Download

Add a download button to Gyazo images

Qu'est-ce que Gyazo Download ?

Gyazo Download est une extension Chrome développée par RostiMelk, et sa fonction principale est "Add a download button to Gyazo images".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Gyazo Download

Téléchargez les fichiers d'extension Gyazo Download au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Gyazo Download Gyazo Download
ID ibhpaofljfiopjggpgmfmhjempjhffjb
URL Officiel https://chromewebstore.google.com/detail/gyazo-download/ibhpaofljfiopjggpgmfmhjempjhffjb
Description Add a download button to Gyazo images
Taille du Fichier 28.31 KB
Nombre d'Installations 121
Version Actuelle 1.0
Dernière Mise à Jour 2023-02-22
Date de Publication 2023-02-22
Développeur RostiMelk
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/RostiMelk/gyazo-download
URL de la Page d'Aide https://github.com/RostiMelk/gyazo-download/issues
Langues Prises en Charge 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\/*"
    ]
}