Gyazo Download
Add a download button to Gyazo images
Cos'è Gyazo Download?
Gyazo Download è un'estensione di Chrome sviluppata da RostiMelk, e la sua funzione principale è "Add a download button to Gyazo images".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Gyazo Download
Scarica i file di estensione Gyazo Download in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Gyazo Download |
ID | ibhpaofljfiopjggpgmfmhjempjhffjb |
URL Ufficiale | https://chromewebstore.google.com/detail/gyazo-download/ibhpaofljfiopjggpgmfmhjempjhffjb |
Descrizione | Add a download button to Gyazo images |
Dimensione del File | 28.31 KB |
Conteggio Installazioni | 121 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2023-02-22 |
Data di Pubblicazione | 2023-02-22 |
Sviluppatore | RostiMelk |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/RostiMelk/gyazo-download |
URL della Pagina di Aiuto | https://github.com/RostiMelk/gyazo-download/issues |
Lingue Supportate | 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\/*" ] } |